diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-12-13 17:02:55 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-12-13 17:02:55 -0600 |
commit | ac0ced5b71d2cf2bce444fce88e7b359ac08815c (patch) | |
tree | 6305e51ef39ba2a34b93f39e1a650ae346f6cebb /src/bossRamboo.cpp | |
parent | e1425a9dcaf00f3f0932a0a8830d8593bf91ab60 (diff) | |
download | kamek-ac0ced5b71d2cf2bce444fce88e7b359ac08815c.tar.gz kamek-ac0ced5b71d2cf2bce444fce88e7b359ac08815c.zip |
Added thundercloud sprite, made area death clouds
Diffstat (limited to '')
-rw-r--r-- | src/bossRamboo.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/bossRamboo.cpp b/src/bossRamboo.cpp index 2dcd885..ea97629 100644 --- a/src/bossRamboo.cpp +++ b/src/bossRamboo.cpp @@ -159,7 +159,7 @@ int daRamboo_c::onCreate() { ActivePhysics::Info HitMeBaby; HitMeBaby.xDistToCenter = 160.0; - HitMeBaby.yDistToCenter = -80.0; + HitMeBaby.yDistToCenter = 80.0; HitMeBaby.xDistToEdge = 148.0; HitMeBaby.yDistToEdge = 148.0; @@ -173,8 +173,16 @@ int daRamboo_c::onCreate() { this->aPhysics.initWithStruct(this, &HitMeBaby); - this->aPhysics.addToList(); + this->aPhysics.collisionCheckType = 2; + this->aPhysics._8 = 48.0; + this->aPhysics._C = 48.0; + this->aPhysics._18 = 48.0; + this->aPhysics.trpValue0 = 48.0; + this->aPhysics.trpValue1 = 48.0; + this->aPhysics.trpValue2 = 48.0; + this->aPhysics.trpValue3 = 48.0; + this->aPhysics.addToList(); this->Baseline = this->pos.y; this->rot.x = 0; // X is vertical axis |