Add dummy return values to keep MSVC happy
This commit is contained in:
parent
f6b66fc5db
commit
2abe2df1b4
|
|
@ -122,6 +122,7 @@ get_body() const {
|
|||
//PhysxBodyDesc value;
|
||||
//value._desc = *(_desc.body);
|
||||
//return value;
|
||||
return PhysxBodyDesc();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ set_max_bounds(PhysxBounds3 &bounds) {
|
|||
////////////////////////////////////////////////////////////////////
|
||||
// Function: PhysxSceneDesc::get_max_bounds
|
||||
// Access: Published
|
||||
// Description:
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////////
|
||||
PhysxBounds3 PhysxSceneDesc::
|
||||
get_max_bounds() const {
|
||||
|
|
@ -102,6 +102,7 @@ get_max_bounds() const {
|
|||
//PhysxBounds3 value;
|
||||
//value._bounds = *(_desc.maxBounds);
|
||||
//return value;
|
||||
return PhysxBounds3();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
Loading…
Reference in New Issue