Browse Source

Add missing isGroup property to Group

Takahiro 7 years ago
parent
commit
106b374183
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/objects/Group.js

+ 3 - 1
src/objects/Group.js

@@ -14,7 +14,9 @@ function Group() {
 
 Group.prototype = Object.assign( Object.create( Object3D.prototype ), {
 
-	constructor: Group
+	constructor: Group,
+
+	isGroup: true
 
 } );