|
@@ -94,7 +94,7 @@ export class Tools {
|
|
|
|
|
|
/**
|
|
|
* Use this object to register external classes like custom textures or material
|
|
|
- * to allow the laoders to instantiate them
|
|
|
+ * to allow the loaders to instantiate them
|
|
|
*/
|
|
|
public static get RegisteredExternalClasses() {
|
|
|
return InstantiationTools.RegisteredExternalClasses;
|
|
@@ -1120,7 +1120,7 @@ export class Tools {
|
|
|
public static StartPerformanceCounter: (counterName: string, condition?: boolean) => void = Tools._StartPerformanceCounterDisabled;
|
|
|
|
|
|
/**
|
|
|
- * Ends a specific performance coutner
|
|
|
+ * Ends a specific performance counter
|
|
|
*/
|
|
|
public static EndPerformanceCounter: (counterName: string, condition?: boolean) => void = Tools._EndPerformanceCounterDisabled;
|
|
|
|
|
@@ -1255,7 +1255,7 @@ export class AsyncLoop {
|
|
|
* Constructor.
|
|
|
* @param iterations the number of iterations.
|
|
|
* @param func the function to run each iteration
|
|
|
- * @param successCallback the callback that will be called upon succesful execution
|
|
|
+ * @param successCallback the callback that will be called upon successful execution
|
|
|
* @param offset starting offset.
|
|
|
*/
|
|
|
constructor(
|
|
@@ -1299,7 +1299,7 @@ export class AsyncLoop {
|
|
|
* Create and run an async loop.
|
|
|
* @param iterations the number of iterations.
|
|
|
* @param fn the function to run each iteration
|
|
|
- * @param successCallback the callback that will be called upon succesful execution
|
|
|
+ * @param successCallback the callback that will be called upon successful execution
|
|
|
* @param offset starting offset.
|
|
|
* @returns the created async loop object
|
|
|
*/
|