You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Initialize class/struct variables with default values in modules/
This commit is contained in:
@@ -39,11 +39,9 @@
|
||||
*/
|
||||
|
||||
btRayShape::btRayShape(btScalar length) :
|
||||
btConvexInternalShape(),
|
||||
m_shapeAxis(0, 0, 1) {
|
||||
btConvexInternalShape() {
|
||||
m_shapeType = CUSTOM_CONVEX_SHAPE_TYPE;
|
||||
setLength(length);
|
||||
slipsOnSlope = false;
|
||||
}
|
||||
|
||||
btRayShape::~btRayShape() {
|
||||
|
||||
Reference in New Issue
Block a user