コード例 #1
0
ファイル: physics_server_sw.cpp プロジェクト: 03050903/godot
int PhysicsServerSW::space_get_contact_count(RID p_space) const {

	SpaceSW *space = space_owner.get(p_space);
	ERR_FAIL_COND_V(!space,0);
	return space->get_debug_contact_count();

}