oh marmotte your game works/looks great good job..anything with SF i love keep us updated :)
Printable View
oh marmotte your game works/looks great good job..anything with SF i love keep us updated :)
well, it actually can animate like that...obviusly you'd have to be good... but the big problem would probably be exporting to flash....so anyway, what did he use??
poser 4 pro pack can actually export to swf and other formatsQuote:
Originally posted by pentru
well, it actually can animate like that...obviusly you'd have to be good... but the big problem would probably be exporting to flash....so anyway, what did he use??
lets see if i can make a character and ill post it later
marmotte your game works fine now i think
i coulndt make the guy punch though ... maybe it me :)
try again later.
here it is a quicky i am sure it can be optimized
http://digilander.libero.it/magneto1/kungfu.swf
thanks all for your replies ^^. it keeps me motivated
micke85
that's how i did (sorry for the french name of the variables)
frame1:
TailleTotaleAnimation = this.getBytesTotal();
PourcentageAnimation = TailleTotaleAnimation/100;
_root.loading._yscale = 1;
BarreLoadingMove = _root.loading._yscale;
frame 2
ChargementActuel = this.getBytesLoaded();
CalculPourcentage = Math.round(ChargementActuel/PourcentageAnimation);
_root.loading._yscale = BarreLoadingMove+CalculPourcentage;
frame3
if (CalculPourcentage>=100) {
gotoAndStop(4);
} else {
gotoAndPlay(2);
}
frame4
well... the begining of your game
pentru
i just ripped some well-known characters from the game street fighter alpha. my game will be based upon existing characters...
magnetos
punches and kicks are keys 1, 2, 3 and 4...
isn'it working? or are you under beers today too?^^
ahemmm they working now :D
marmotte dont forget to check my link above you may want to use poser 4 pro pack for your own original stuff
that's what I thought!!!....but is there any way to export out of Poser 4 (I don't have pro pack...) as a sequence of vector images....or somethind that can be used in flash??Quote:
Originally posted by magnetos
ahemmm they working now :D
marmotte dont forget to check my link above you may want to use poser 4 pro pack for your own original stuff
I thought of a sequence of images (bmp) rendered with a black backgroud...but then in flash I'd have to Bitmaptrace each one to get rid of the black background...do you know of any other way???
thatnks for any help...
it's always better to hand draw these things though..i tried everyhting out there(i think) to do the animation..but i ended redrawing them in flash,it's better for the file size too. u can do the image sequence like u said but it'll take timeeeeee to do..good luck with it
well, it'll probably take longer to drawing by hand rather then clean up bitmaps of their backgrnd....Quote:
Originally posted by rockron
it's always better to hand draw these things though..i tried everyhting out there(i think) to do the animation..but i ended redrawing them in flash,it's better for the file size too. u can do the image sequence like u said but it'll take timeeeeee to do..good luck with it
yeah but your file size would be much much smaller...it all dependson what u doing..if ur doing a fighter like marmotte..he said each character is ~200K so do the math...but it all comes down to what u doin and the quality u want out of it
later
yeah, It'll be a fighter...however if I bitmatrace each frame to a 10% of its original pixel size.... that should gime a dicent file size...Quote:
Originally posted by rockron
yeah but your file size would be much much smaller...it all dependson what u doing..if ur doing a fighter like marmotte..he said each character is ~200K so do the math...but it all comes down to what u doin and the quality u want out of it
later
I wonder if poser pro pack will export a sequence of vector images to flash and whether it takes out the background color...do you Know??
LoadMovie.
Marmotte, whats prolly happening with the loadmovies is that the base swf is fully loaded. But when you goto the fighting field you use the loadmovie to load the new characters. however these movies have not fully loaded yet when it gets to the stage. that would be why nothing shows up. possible sollution would be after you pick your character a versus screen, with a loading bar for each character picked.
Nugget
[QUOTE]Originally posted by pentru
[B]poser pro pack will export to swf avi and pngQuote:
Originally posted by rockron
I wonder if poser pro pack will export a sequence of vector images to flash and whether it takes out the background color...do you Know??
png is best suited for flash since there wont be any background to cut off
too bad there is no hand drawing tool
Bah. You mean I have to change Hiei again!? :P
hey magnetos cool charactered, although his movment and look reminds me of a wasted jackie chan! HA!
keep it coming marmotte!
for the characters, i did a swf like that:Quote:
whats prolly happening with the loadmovies is that the base swf is fully loaded. But when you goto the fighting field you use the loadmovie to load the new characters. however these movies have not fully loaded yet when it gets to the stage. that would be why nothing shows up. possible sollution would be after you pick your character a versus screen, with a loading bar for each character picked.
frame 1: nothing
frame 2: stop
frame 3: MC of the character
main swf:
during the screen with the two guys facing (versus screen), i put a stop, with a condition, if the currentframes of both fighters are 2, then nextFrame() for them and nextFrame() for the main swf... (enterFrame of course).
...? is it not correct?
i also tried to put a loading for each character, that failed. the loading (the same i used for the main swf) acted very strangely...
From the base swf. Lets say you called the player 1 mc player1. and the player 2 mc player2. You would do something to this effect.
if (player1.getBytesLoaded()==player1.getbytesTotal() and player2.getBytesLoaded()==player2.getbytesTotal()) {
then goto the apropriate frame.
I'm still waiting for riding of the cows, marmotte. :D
...really?
Have you gotten the loadmovie working yet marmotte?