updated camera & console

This commit is contained in:
Stanimir Karoserov
2014-05-21 19:05:34 +03:00
parent db987a361d
commit 826050eda0
4 changed files with 10 additions and 5 deletions

View File

@@ -61,4 +61,9 @@ export declare class Console {
* @param obj The object instance to be dumped.
*/
public dump(obj: any): void;
/**
* Prints the state of the specified object to the console.
*/
public dir(obj: any): void;
}

View File

@@ -320,4 +320,6 @@ export class Console {
result.push('=== dump(): finished ===');
this.log(result.join('\n'));
}
}
public dir = this.dump;
}