The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.39 / 5.00 38,635 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 15,161 Views
At 12/8/08 10:08 AM, mraw wrote: hmmm what do ytou think of this style. I know its very lazy but do you think it could work?
http://www.skatelebanon.com/swfer/done?f =1228748814
Yep, it's abit lazy, but I think it worked preyy neat. Realistic and smooth...
At 12/8/08 10:08 AM, mraw wrote: hmmm what do ytou think of this style. I know its very lazy but do you think it could work?
http://www.skatelebanon.com/swfer/done?f =1228748814
i think that its extremely lazy but it didn't work bad at all.
At 12/8/08 10:08 AM, mraw wrote: hmmm what do ytou think of this style. I know its very lazy but do you think it could work?
http://www.skatelebanon.com/swfer/done?f =1228748814
im going to be honest with you, i hated it, i didnt like the stlye the physics were a bit shitty, it was to slow, i didnt like the character, sorry i just dont like it, fbf ftw!
lilcheeselad says: You can't blame EyeLovePoozy for being a douche, he can't help it.
I thought it looked awesome. really smooth, because of the tweens, and oddly professional looking.
At 12/8/08 04:41 PM, sistem69 wrote: GUYS I GOT A MAC (LEOPARD)
YAYAYAYAYAYAYAYAYAYAYAYAYAYAYAYAYAYAYAYA YAYAYAYAYAYAYAYAYA!!!!!
At 12/8/08 10:08 AM, mraw wrote: hmmm what do ytou think of this style. I know its very lazy but do you think it could work?
http://www.skatelebanon.com/swfer/done?f =1228748814
It was okay.
a little too slow for my liking.
At 12/8/08 10:08 AM, mraw wrote: hmmm what do ytou think of this style. I know its very lazy but do you think it could work?
http://www.skatelebanon.com/swfer/done?f =1228748814
I don't know. Nice art, but the motion tweened legs were kinda squeeeezed. and the arms were kinda stiff, like the art and stuff, but you must use some different pictures of his legs and arms. Mixing motion tween and fbf is really cool in my opinion C:
At 7/28/07 12:36 PM, TommyVF wrote: By the way, have anyone pooed at Hitler lately?
3 - o >:I(
HAHAHAHAHAHAAAA!!!!
Woot got a new wacom, its naice. Heres random crap I did on paint!
At 12/9/08 10:45 PM, G-F-D wrote: Woot got a new wacom, its naice. Heres random crap I did on paint!
cool, :D what kind of wacom? :O
I need help with some action stuff!
Lochie made me some falling snow stuff, with actions, but it seems to go on through the whole movie! How can I stop it or make it transparent?
At 12/11/08 10:44 AM, SimonG wrote: Lochie made me some falling snow stuff, with actions, but it seems to go on through the whole movie! How can I stop it or make it transparent?
Oops sorry about that. :P
Replace the code with this if you want them just to fall off the screen:
width = Stage.width*2.5;
snowStop = false;
for (i=0; i<200; i++) {
duplicateMovieClip(snowflake, "sf"+i, 10+i);
_root["sf"+i]._x = random(Stage.width);
_root["sf"+i]._y = random(Stage.height);
_root["sf"+i].speed = random(5)+random(5)+2;
_root["sf"+i]._alpha = random(80)+20;
}
onEnterFrame = function () {
for (i=0; i<200; i++) {
_root["sf"+i]._y += _root["sf"+i].speed;
_root["sf"+i]._x += _root["sf"+i].speed/3;
if (snowStop == true) {
if (_root["sf"+i]._x>Stage.width) {
_root["sf"+i].removeMovieClip();
}
if (_root["sf"+i]._y>Stage.height) {
_root["sf"+i].removeMovieClip();
}
} else {
if (_root["sf"+i]._x>Stage.width) {
_root["sf"+i]._x = random(width)-Stage.width/2;
_root["sf"+i]._y = 0;
}
if (_root["sf"+i]._y>Stage.height) {
_root["sf"+i]._y = 0;
_root["sf"+i]._x = random(width)-Stage.width/2;
}
}
}
};
and then on the frame that you want them to stop at put:
snowStop=true;
UNLESS
if you want them to just disappear straight away then replace the code with this:
width = Stage.width*2.5;
snowStop = false;
for (i=0; i<200; i++) {
duplicateMovieClip(snowflake, "sf"+i, 10+i);
_root["sf"+i]._x = random(Stage.width);
_root["sf"+i]._y = random(Stage.height);
_root["sf"+i].speed = random(5)+random(5)+2;
_root["sf"+i]._alpha = random(80)+20;
}
onEnterFrame = function () {
for (i=0; i<200; i++) {
_root["sf"+i]._y += _root["sf"+i].speed;
_root["sf"+i]._x += _root["sf"+i].speed/3;
if (snowStop == true) {
_root["sf"+i].removeMovieClip();
} else {
if (_root["sf"+i]._x>Stage.width) {
_root["sf"+i]._x = random(width)-Stage.width/2;
_root["sf"+i]._y = 0;
}
if (_root["sf"+i]._y>Stage.height) {
_root["sf"+i]._y = 0;
_root["sf"+i]._x = random(width)-Stage.width/2;
}
}
}
};
and then also on the frame that you want them to stop at put:
snowStop=true;
Enjoy.
lilcheeselad says: You can't blame EyeLovePoozy for being a douche, he can't help it.
At 12/10/08 02:48 PM, MarcyVF wrote:At 12/9/08 10:45 PM, G-F-D wrote: Woot got a new wacom, its naice. Heres random crap I did on paint!cool, :D what kind of wacom? :O
dunno haha, it's pretty pimp. GL with the collab btw!
At 12/12/08 08:29 AM, cronic-22 wrote: only 11 hours untill sfc3 is closed
wow, is lochie done already? :O
At 12/12/08 10:20 AM, MarcyVF wrote:At 12/12/08 08:29 AM, cronic-22 wrote: only 11 hours untill sfc3 is closedwow, is lochie done already? :O
who knows
lilcheeselad says: You can't blame EyeLovePoozy for being a douche, he can't help it.
Looking worward to see it submitted, ADD ME AS PORTAL BUDDY!
At 12/12/08 01:01 PM, SimonG wrote: Looking worward to see it submitted, ADD ME AS PORTAL BUDDY!
Yay, are we soon done? :O Awesome! :)
something like three more hours...
LOCHIE! you've got to take part!
At 12/12/08 07:41 PM, Night-Mare wrote: *runs for the hills*
What? :S
At 12/12/08 07:08 PM, GlowingMonkey wrote: May... uh... may I join? :*
of course :D (in my opinion)
lolz, well I guess that's it :(
lochstarz, what has come over u? :O
guys k-guare gave me an idea. what do you guys think about doing a christmas collab?
it would be a good time to test my fbf :D
also those who werent able to make a part for the sfc3 (like me because of the new imac and all) could do shomething now :D
I'm not able to join a christmas collab, me and Tommy are making TT: 010 Rabbitmas! :P