James Koss 7 年 前
コミット
5dd2c8fe8e
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/babylon.node.ts

+ 1 - 1
src/babylon.node.ts

@@ -6,7 +6,7 @@
     export type NodeConstructor = (name: string, scene: Scene, options?: any) => () => Node;
 
     /**
-     * Node is the basic class for all scene objects (Mesh, Light Camera).
+     * Node is the basic class for all scene objects (Mesh, Light, Camera.)
      */
     export class Node implements IBehaviorAware<Node> {
         private static _NodeConstructors: {[key: string]: any} = {};