소스 검색

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)


불러오는 중...
취소
저장