Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
presstube committed Jul 27, 2011
0 parents commit 1c39f1f
Show file tree
Hide file tree
Showing 98 changed files with 32,261 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/deploy
/html-template
3 changes: 3 additions & 0 deletions README.TXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
A small project depicting Chunkulus, a meteor who vomits confetti.

All com.presstube class files and asset binaries are released under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
Binary file added assets/Scan 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Scan 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Scan 3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/assets.fla
Binary file not shown.
Binary file added assets/assets.swc
Binary file not shown.
Binary file added assets/assets.swf
Binary file not shown.
18,643 changes: 18,643 additions & 0 deletions assets/chunklets.eps

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions src/Main.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package {
import com.presstube.flyingchunk.FlyingChunkApp;

import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;

[SWF(frameRate = "30", backgroundColor = "#222222")]

public class Main extends Sprite {

private var flyingChunkApp:FlyingChunkApp;

public function Main() {

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

addChild(flyingChunkApp = new FlyingChunkApp);

stage.addEventListener(Event.RESIZE, function(e:Event=null):void {
flyingChunkApp.x = stage.stageWidth / 2;
flyingChunkApp.y = stage.stageHeight / 2;
});
stage.dispatchEvent(new Event(Event.RESIZE));

}
}
}
379 changes: 379 additions & 0 deletions src/com/greensock/OverwriteManager.as

Large diffs are not rendered by default.

954 changes: 954 additions & 0 deletions src/com/greensock/TimelineLite.as

Large diffs are not rendered by default.

837 changes: 837 additions & 0 deletions src/com/greensock/TimelineMax.as

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions src/com/greensock/TweenAlign.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* VERSION: 0.86
* DATE: 6/15/2009
* AS2 (AS3 version is also available)
* UPDATES AND DOCUMENTATION AT: http://www.TweenLite.com
**/
package com.greensock {
/**
* Static constants for defining tween alignment.
*
* <b>Copyright 2010, GreenSock. All rights reserved.</b> This work is subject to the terms in <a href="http://www.greensock.com/terms_of_use.html">http://www.greensock.com/terms_of_use.html</a> or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
*
* @author Jack Doyle, jack@greensock.com
**/
public class TweenAlign {
public static const NORMAL:String = "normal";
public static const SEQUENCE:String = "sequence";
public static const START:String = "start";
}

}
708 changes: 708 additions & 0 deletions src/com/greensock/TweenLite.as

Large diffs are not rendered by default.

1,331 changes: 1,331 additions & 0 deletions src/com/greensock/TweenMax.as

Large diffs are not rendered by default.

441 changes: 441 additions & 0 deletions src/com/greensock/TweenNano.as

Large diffs are not rendered by default.

Loading

0 comments on commit 1c39f1f

Please sign in to comment.