forked from CreateJS/PreloadJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README_CREATEJS_NAMESPACE.txt
24 lines (18 loc) · 1.02 KB
/
README_CREATEJS_NAMESPACE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
In this version of PreloadJS, class definitions reside in a "createjs" namespace by default.
For example, instead of instantiating a preloader like this:
var foo = new PreloadJS();
You will need to reach into the createjs namespace:
var bar = new createjs.LoadQueue();
This functionality is configurable though. You can easily shortcut the namespace or get rid of it completely.
To shortcut the namespace, just point a different variable at createjs it is loaded:
<script src="easeljs.js"></script>
<script>
var c = createjs; // creates a reference to the createjs namespace in "c"
var foo = new c.Shape();
</script>
To remove the namespace, just point the createjs variable at the window before loading the libraries:
<script>
var createjs = window; // sets window as the createjs namespace (the object the classes will be defined in)
</script>
<script src="easeljs.js"></script>
This will also make CreateJS libraries compatible with old content that did not use a namespace, such as the output from the Flash Pro Toolkit for CreateJS v1.0.