瀏覽代碼

assert on non-handled raycast.

undefined
Benjamin ‘Touky’ Huet Sam Hocevar <sam@hocevar.net> 11 年之前
父節點
當前提交
4cd864545c
共有 1 個檔案被更改,包括 10 行新增2 行删除
  1. +10
    -2
      test/physics/lolphysics.h

+ 10
- 2
test/physics/lolphysics.h 查看文件

@@ -147,6 +147,8 @@ public:

virtual btScalar addSingleResult(btCollisionWorld::LocalRayResult& rayResult,bool normalInWorldSpace)
{
UNUSED(rayResult);
UNUSED(normalInWorldSpace);
return .0f;
}
};
@@ -185,7 +187,7 @@ public:
}
default:
{
break;
ASSERT(0, "Raycast not handled");
}
}

@@ -217,7 +219,7 @@ public:
}
default:
{
break;
ASSERT(0, "Raycast not handled");
}
}
}
@@ -257,6 +259,8 @@ private:

void CustomSetWorldLimit(vec3 const &NewWorldMin, vec3 const &NewWorldMax)
{
UNUSED(NewWorldMin);
UNUSED(NewWorldMax);
}

void CustomSetTimestep(float NewTimestep) { }
@@ -358,6 +362,10 @@ private:
SearchList = &m_character_controller_list;
break;
}
default:
{
ASSERT(0, "Physic type does not exist.");
}
}

if (AddObject)


Loading…
取消
儲存