Pārlūkot izejas kodu

name ref in comment

Guide 6 gadi atpakaļ
vecāks
revīzija
f3b60bc62a
1 mainītis faili ar 4 papildinājumiem un 1 dzēšanām
  1. 4 1
      src/Sprites/spritePackedManager.ts

+ 4 - 1
src/Sprites/spritePackedManager.ts

@@ -21,7 +21,10 @@ export class SpritePackedManager extends SpriteManager{
      * @param fromPacked set to true; do not alter
      * @param fromPacked set to true; do not alter
      */
      */
 
 
-    constructor(public name: string, imgUrl: string, capacity: number, scene: Scene, spriteJSON: string | null = null, epsilon: number = 0.01, samplingMode: number = Texture.TRILINEAR_SAMPLINGMODE) {
+    constructor(
+        /** defines the packed manager's name */
+        public name: string, 
+        imgUrl: string, capacity: number, scene: Scene, spriteJSON: string | null = null, epsilon: number = 0.01, samplingMode: number = Texture.TRILINEAR_SAMPLINGMODE) {
 
 
         //the cellSize parameter is not used when built from JSON which provides individual cell data, defaults to 64 if JSON load fails
         //the cellSize parameter is not used when built from JSON which provides individual cell data, defaults to 64 if JSON load fails
         super(name, imgUrl, capacity, 64, scene, epsilon, samplingMode, true, spriteJSON);
         super(name, imgUrl, capacity, 64, scene, epsilon, samplingMode, true, spriteJSON);