]> git.r.bdr.sh - rbdr/sumo/blobdiff - lib/factories/pixi.js
Use Parcel (#5)
[rbdr/sumo] / lib / factories / pixi.js
index e3c1b5acb06b587d688947137e18ffa1d38e65c7..851a07459b11e7ff6db427b956c461f86cc63d90 100644 (file)
@@ -16,9 +16,9 @@ export default {
    * @memberof PixiFactory
    * @return {external:CreateJs.Container} the created container
    */
    * @memberof PixiFactory
    * @return {external:CreateJs.Container} the created container
    */
-  createSumo() {
+  createSumo(config) {
 
 
-    const radius = 25;
+    const radius = config.radius;
 
     // The body
     const body = new Graphics();
 
     // The body
     const body = new Graphics();
@@ -61,6 +61,18 @@ export default {
     body.addChild(rightPupil);
 
     return body;
     body.addChild(rightPupil);
 
     return body;
+  },
+
+  /**
+   * Creates an empty graphic
+   *
+   * @function createEmptyGraphic
+   * @memberof PixiFactory
+   * @return {external:CreateJs.Container} the created container
+   */
+  createEmptyGraphic(config) {
+
+    return new Graphics();
   }
 };
 
   }
 };