home *** CD-ROM | disk | FTP | other *** search
- function fadeOut()
- {
- this._fadeAction = true;
- }
- function onInit()
- {
- this._fadeAction = false;
- }
- function onUpdate()
- {
- if(this._fadeAction)
- {
- if(_parent.animation._alpha > 0)
- {
- _parent.animation._alpha -= 7;
- }
- else
- {
- this._fadeAction = false;
- _parent.animation._alpha = 0;
- }
- }
- }
-