Type renames:

Matrix32 -> Transform2D
	Matrix3 -> Basis
	AABB -> Rect3
	RawArray -> PoolByteArray
	IntArray -> PoolIntArray
	FloatArray -> PoolFloatArray
	Vector2Array -> PoolVector2Array
	Vector3Array -> PoolVector3Array
	ColorArray -> PoolColorArray
This commit is contained in:
Juan Linietsky 2017-01-11 00:52:51 -03:00
parent 710692278d
commit bc26f90581
266 changed files with 2466 additions and 2468 deletions

View file

@ -78,12 +78,12 @@ void Room::_notification(int p_what) {
AABB Room::get_aabb() const {
Rect3 Room::get_aabb() const {
if (room.is_null())
return AABB();
return Rect3();
return AABB();
return Rect3();
}
PoolVector<Face3> Room::get_faces(uint32_t p_usage_flags) const {