first commit
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
this.setBaseBombSpeed = function(v)
|
||||
{
|
||||
this.bombFactoryMC.setBaseBombSpeed(v);
|
||||
};
|
||||
this.setBombAngel = function(v)
|
||||
{
|
||||
this.bombFactoryMC.setBombAngel(v);
|
||||
};
|
||||
this.setBaseBlimpSpeed = function(v)
|
||||
{
|
||||
this.blimpFactoryMC.setBaseBlimpSpeed(v);
|
||||
};
|
||||
this.getBaseBombSpeed = function()
|
||||
{
|
||||
return this.bombFactoryMC.getBaseBombSpeed();
|
||||
};
|
||||
this.getBombAngle = function()
|
||||
{
|
||||
return this.bombFactoryMC.getBombAngle();
|
||||
};
|
||||
this.getBaseBlimpSpeed = function()
|
||||
{
|
||||
return this.blimpFactoryMC.getBlimpBaseSpeed();
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
on(construct){
|
||||
_type = "RenderImage";
|
||||
_mode = "ALPHA";
|
||||
_imageMap = "RA3_MainMenu3D_logo";
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_scale = 0.10000000149011612;
|
||||
m_maxBlimps = 3;
|
||||
m_type = 2;
|
||||
m_stepSize = 0.25;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_scale = 0.30000001192092896;
|
||||
m_maxBlimps = 2;
|
||||
m_type = 2;
|
||||
m_stepSize = 0.5;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_scale = 0.75;
|
||||
m_maxBlimps = 2;
|
||||
m_type = 0;
|
||||
m_stepSize = 1;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
on(construct){
|
||||
m_maxBombs = 10;
|
||||
m_scale = 0.10000000149011612;
|
||||
m_exploding = false;
|
||||
m_stepSize = 1;
|
||||
m_contentMC = "farBombMC";
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
on(construct){
|
||||
m_maxBombs = 40;
|
||||
m_scale = 0.25;
|
||||
m_exploding = false;
|
||||
m_stepSize = 4;
|
||||
m_contentMC = "farBombMC";
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
on(construct){
|
||||
m_maxBombs = 10;
|
||||
m_scale = 0.5;
|
||||
m_exploding = true;
|
||||
m_stepSize = 8;
|
||||
m_contentMC = "frontBombMC";
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
gotoAndStop("_start");
|
||||
play();
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
this.bombDone = function()
|
||||
{
|
||||
_parent._parent.bombDone(this.mID);
|
||||
};
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
trace("RELOAD " + _parent._parent);
|
||||
_parent._parent.reset(_parent.mID);
|
||||
gotoAndStop("_reload");
|
||||
+1
@@ -0,0 +1 @@
|
||||
stop();
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
_parent.reset(this.mID);
|
||||
gotoAndStop("_reset");
|
||||
play();
|
||||
+1
@@ -0,0 +1 @@
|
||||
gotoAndPlay(1);
|
||||
Reference in New Issue
Block a user