Newagemugen
Newagemugen
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Newagemugen

We're The Best At What We Do - Runnin' The Mugen Underground Since 2010. Underground M.U.G.E.N community specializing in advanced Quality Mugen content, Fanart, Graphics, Fighting Games & more.

You are not connected. Please login or register

Development Questions

+4
MarzDaIndigo
Susano-o
xxnitroxx
TweaK
8 posters

Go to page : 1, 2, 3  Next

Go down  Message [Page 1 of 3]

1Development Questions Empty Development Questions Tue Jun 08, 2010 6:11 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Here are a couple issues I've been stuck at and any help with them would be greatly appreciated



1.Anyone know where I could find a good animation tutorial or would be willing to give a explanation as to how to do animations. I have some pretty static bgs that need a little livening up.

2.I got attached to this hexagon select screen I made. I'm looking to line up the select slots with the bg image(which will have custom portraits on it) and then just hiding the preexisting portraits. The problem is I don't know how to get the select slots to line up with my image since every attempt seems to kinda get one slot just right while everything else goes to hell in a hand basket.

Spoiler:

I want things to kinda be centered within the hexagons so that when I make the select cursor which will also be hexagon shaped everything is nice and flush.So what I'm asking is how do i achieve this effect and possibly am I going the wrong way about this?



Last edited by Akiba on Wed Jun 16, 2010 10:11 am; edited 1 time in total

2Development Questions Empty Re: Development Questions Tue Jun 08, 2010 6:31 pm

xxnitroxx

xxnitroxx

Development Questions 49283851498_0631820187_o
Death Note (Wood)
Created Your first Forum Topic
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Aww no i see whats the Problem Akiba, you have To Make Portraits For The Character (Ports) Are you akibanaruto from youtube (IDK) so thats what you do when you make the ports and it dont fit you have to open the character file and move the picture on a direction to fit the hexagone

Sincerly
Nitro


P.S. N00B you are learing good xD What a Face

3Development Questions Empty Re: Development Questions Tue Jun 08, 2010 6:43 pm

Susano-o

Susano-o

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

Ill give an example of anim code.

1,0,0,0,5
1,1,0,0,5

Basically, the first number is the group num, the 2nd number is the image number. The 3 and 4th num i forgot and the 5th is how fast or slow the anim is.


________________________________________________________________________________________________________________________________________________________________________
Development Questions AyumiFANFTW
http://newagemugen.forumotion.com/forum.htm

4Development Questions Empty Re: Development Questions Tue Jun 08, 2010 6:50 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

So lemme just repeat this for my own benefit:

@ Nitro-Lemme just repeat this for my own benefit: I gotta put in character portraits in the characters I plan to use for this project, then position those on the screen how I want them to fit on my selectscreen. And I don't need to be tinkering around with the character select slots in the system.def. Am I getting this right?

@ Ayumifan-Thanks, that's pretty straightforward and simple now I just gotta give it a try

5Development Questions Empty Re: Development Questions Tue Jun 08, 2010 6:52 pm

Susano-o

Susano-o

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

No prob. Glad I was of help.


________________________________________________________________________________________________________________________________________________________________________
Development Questions AyumiFANFTW
http://newagemugen.forumotion.com/forum.htm

6Development Questions Empty Re: Development Questions Tue Jun 08, 2010 7:31 pm

xxnitroxx

xxnitroxx

Development Questions 49283851498_0631820187_o
Death Note (Wood)
Created Your first Forum Topic
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Yes akiba Your getting it just like ayum Said too, Well you have to make your own ports postiton them in a good angle and make your own render to fit the port and octigon

7Development Questions Empty Re: Development Questions Tue Jun 08, 2010 7:34 pm

MarzDaIndigo

MarzDaIndigo

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Deadly Pen Pusher (Bronze)
Created 10 or more Unique Topics
Kindred Spirit (Bronze)
Liked 5 Forum posts
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

just to add onto what ayumi said :P

okay this is the "soft" way of coding an animation.


[BG 8]
type = anim
actionno = 8 ;<---- at the bottom of the code you will see [Begin Action 8], the number at the end of that and this number MUST be the same.
layerno = 0
start = 556, -61 ;make sure this is the same as all your other sprites
delta = 1,1
mask = 1
velocity = 2, 2 ;<----------- include this if you want the sprite to "move" from left to right or top to bottom, don't include if you want to have the animation stay at the same spot
tile = 1, 0 ; add if you want to tile the anim (first number is left to right, second is up and down)
tilespacing = 0,0 ;<--- add the distance between the tiles( I used 1000, 0, for the last stage i made).

[begin action 8]
0,0,0,0,10,
0,1,0,0,10,
0,2,0,0,10,
0,3,0,0,10,
0,4,0,0,10,
0,5,0,0,10,
0,6,0,0,10,
0,7,0,0,10,
0,8,0,0,10,
0,9,0,0,10,

each thing means:
group number, image number, x position, y position, speed

in the definition bit, you can make ths sprite "move" one direction with velocity. if you want, you can tile it so that it keeps on going across the screen.
play around with it. if you need more help you can we're happy to help.

AND MAKE SURE to look at cybaster's ultimate stage tutorial.

http://www.soundclick.com/K1ngMarz

8Development Questions Empty Re: Development Questions Tue Jun 08, 2010 7:47 pm

Susano-o

Susano-o

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

Thx momo. Forgot bout that. But yea. That's all there is to anim code. Hope this was helpful to yu.


________________________________________________________________________________________________________________________________________________________________________
Development Questions AyumiFANFTW
http://newagemugen.forumotion.com/forum.htm

9Development Questions Empty Re: Development Questions Tue Jun 08, 2010 7:51 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Thanks for the in depth explanation Momo, and I'll make sure to check out that tutorial.

One quick question, how do you get FF to make cleaner selections when you make the bg color transparent. Everytime I do it it leaves this 1 pixel wide outline(of the bg color that is) around the image. So far I've gotten around this by making everything in one big sprite but I see cutting corners won't really work out with what has to be done. Any suggestions?

10Development Questions Empty Re: Development Questions Tue Jun 08, 2010 8:06 pm

MarzDaIndigo

MarzDaIndigo

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Deadly Pen Pusher (Bronze)
Created 10 or more Unique Topics
Kindred Spirit (Bronze)
Liked 5 Forum posts
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

no problem.

DONT use FF for that. it's not a perfect program, and I've never used it for palette stuff and indexing sprites and all that jazz.

get GIMP or Photoshop. If you're forced to use FF for whatever reason, use the eraser or paint brush in FF and get rid of the outline.

http://www.soundclick.com/K1ngMarz

11Development Questions Empty Re: Development Questions Tue Jun 08, 2010 8:25 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

That's the thing I use Photoshop to index the sprites. I usually make things how i want to them to look slap a Bright neon pink and the Bg and change the image mode to index. After that All I use FF for is to make the pink transparent. Is there a step I'm skipping in the PS process?

12Development Questions Empty Re: Development Questions Tue Jun 08, 2010 8:52 pm

G

G

Development Questions OjtZ7W5
★★Thousand Dragon★★
Posted over 1000 Messages
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
The Greatest Showman (Platinum)
Created 40 or more Unique Topics
★★Pot Of Prosperity★★
Commissioned/Donated to support Newagemugen
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Fanservice (Bronze)
Recieved 20 or more likes from other Members

I made a tutorial for indexing in gimp and setting zero color. Check it out.

Also, if you open the pcx file in gimp, and paint bucket over the sprite also doing what I explained in the tutorial you'll be fine.

http://newagemugen.forumotion.com/devolpment-help-f14/how-to-index-sprites-and-set-zero-coloring-the-gimp-way-t250.htm

Follow that ^

The only part I left out is filling in pink, wherever you put in pink, green, yellow. Doesn't matter, once it's set to zero, it's transparent in mugen. All you must do is fill the spots with the color you want to be the zero color, and index them, and set the zero color. That you can learn in the tutorial above.


________________________________________________________________________________________________________________________________________________________________________

Development Questions XqZWtLC
https://www.newagemugen.com/

13Development Questions Empty Re: Development Questions Tue Jun 08, 2010 8:59 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Thanks GLB it worked! ok now to fix all of these fugly sprites.

14Development Questions Empty Re: Development Questions Tue Jun 08, 2010 9:13 pm

Susano-o

Susano-o

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

Hey glb mind stickying this? For any1 that wants to know how to code anims?


________________________________________________________________________________________________________________________________________________________________________
Development Questions AyumiFANFTW
http://newagemugen.forumotion.com/forum.htm

15Development Questions Empty Re: Development Questions Tue Jun 08, 2010 9:45 pm

G

G

Development Questions OjtZ7W5
★★Thousand Dragon★★
Posted over 1000 Messages
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
The Greatest Showman (Platinum)
Created 40 or more Unique Topics
★★Pot Of Prosperity★★
Commissioned/Donated to support Newagemugen
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Fanservice (Bronze)
Recieved 20 or more likes from other Members

I see no point, honestly. I think if you wanted to make a tutorial on animation code, then I'd sticky. Also your welcome. :cheers:


________________________________________________________________________________________________________________________________________________________________________

Development Questions XqZWtLC
https://www.newagemugen.com/

16Development Questions Empty Re: Development Questions Wed Jun 09, 2010 6:37 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

ok I've hit another brick wall I'm trying to animate the auras I just put for Ryo and Kyo. i copied the code and filled in the blanks with my stuff but it does nothing. my sprites kinda just sit there layered on top of each other. and once I take them out of the system defi still get nothing. I'm looking through the tutorial you guys linked me two but I can;t say I see the answer there. Here's what I have:



[TitleBG 0 - Tagline and BG]
type = normal
spriteno = 0,0
start = 0, 0

[TitleBG 1 - CvS2010 Logo]
type = normal
spriteno = 0,1
start = 0, 0
mask = 1


[TitleBG 2 - Ryu VS Kyo]
type = normal
spriteno = 0,2
start = 0, 0
mask = 1


[TitleBG 3 - Ryu & Kyo Aura1]
type = normal
spriteno = 0,4
start = 0, 0
mask = 1
trans =add1

[TitleBG 3 - Ryu & Kyo Aura2]
type = normal
spriteno = 0,5
start = 0, 0
mask = 1
trans =add1

[BG 8]
type = anim
actionno = 8
layerno = 0
start = 0,-5
delta = 1,1
mask = 1

[begin action 8]
0,4,0,0,10,
0,5,0,0,10,
0,4,0,0,10,
0,5,0,0,10,
0,4,0,0,10,
0,5,0,0,10,
0,4,0,0,10,
0,5,0,0,10,
0,4,0,0,10,
0,5,0,0,10,

17Development Questions Empty Re: Development Questions Wed Jun 09, 2010 8:51 pm

Susano-o

Susano-o

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

Akiba wrote:ok I've hit another brick wall I'm trying to animate the auras I just put for Ryo and Kyo. i copied the code and filled in the blanks with my stuff but it does nothing. my sprites kinda just sit there layered on top of each other. and once I take them out of the system defi still get nothing. I'm looking through the tutorial you guys linked me two but I can;t say I see the answer there. Here's what I have:



[TitleBG 0 - Tagline and BG]
type = normal
spriteno = 0,0
start = 0, 0

[TitleBG 1 - CvS2010 Logo]
type = normal
spriteno = 0,1
start = 0, 0
mask = 1


[TitleBG 2 - Ryu VS Kyo]
type = normal
spriteno = 0,2
start = 0, 0
mask = 1


[TitleBG 3 - Ryu & Kyo Aura1]
type = anim
actionno = w/e
mask = 1
trans =add1

[TitleBG 3 - Ryu & Kyo Aura2]
type = anim
actionno = w/e
start = 0, 0
mask = 1
trans =add1

[BG 8]
type = anim
actionno = 8
layerno = 0
start = 0,-5
delta = 1,1
mask = 1

[Begin Action 8]
0,4,0,0,10,,A <-- try this from this line to the last line.
0,5,0,0,10,,A
0,4,0,0,10,,A
0,5,0,0,10,,A
0,4,0,0,10,,A
0,5,0,0,10,,A
0,4,0,0,10,,A
0,5,0,0,10,,A
0,4,0,0,10,,A
0,5,0,0,10,,A

see if that works. save your code sumwhere before trying this.


________________________________________________________________________________________________________________________________________________________________________
Development Questions AyumiFANFTW
http://newagemugen.forumotion.com/forum.htm

18Development Questions Empty Re: Development Questions Wed Jun 09, 2010 9:26 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Thanks a lot Ayumi, It worked and I see I'm gonna need more sprites for this one

19Development Questions Empty Re: Development Questions Wed Jun 09, 2010 11:05 pm

MarzDaIndigo

MarzDaIndigo

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Deadly Pen Pusher (Bronze)
Created 10 or more Unique Topics
Kindred Spirit (Bronze)
Liked 5 Forum posts
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

yeah +1 ayumi!

do you have two seperate auras? or just one, because you can use the same anim codes for both :P

http://www.soundclick.com/K1ngMarz

20Development Questions Empty Re: Development Questions Wed Jun 09, 2010 11:38 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

They're both on the same layer, the separate sprites are for the different frames in the animation. So the first sprite is both auras at one point and then so on and so forth

21Development Questions Empty Re: Development Questions Sun Jun 27, 2010 12:58 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

ok I need help with a few things.

I was wondering if anyone could help me with bg animations. Also I was wondering if anyone can help me to upscale a set of lifebars.(I got permission from the creator to use them in my screenpack) Lastly I'm still having issues with my select screen, basically I can't get the slots in the right position to line up with the portraits. I was gonna try to work around it but it seems the only way to do that is to go all out an make a full game.

22Development Questions Empty Re: Development Questions Wed Jun 30, 2010 8:36 pm

xxnitroxx

xxnitroxx

Development Questions 49283851498_0631820187_o
Death Note (Wood)
Created Your first Forum Topic
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

Akiba any pics man you doing good

23Development Questions Empty Re: Development Questions Thu Jul 01, 2010 2:04 pm

TweaK

TweaK

Development Questions 49283851498_0631820187_o
Newsboy (Stone)
Created 5 or more Unique Topics
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

nah, nothing new just yet Chino. I'm actually gonna revamp the select screen one last time. I'm just kinda waiting for my power to get back online. I'm at a relatve's atm so i can't get anything done aside from sketch.

24Development Questions Empty Re: Development Questions Thu Jul 01, 2010 3:42 pm

Fletch, The Angry Black

Fletch, The Angry Black

Development Questions 49283851498_0631820187_o
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Published To Perfection (Gold)
Created 30 or more Unique Topics
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

Lookin foward for updates bro.


________________________________________________________________________________________________________________________________________________________________________
Development Questions Manfuckasignature
Boosie Badazz I'll Spit On Ya!
https://www.youtube.com/GUN0TRADIO

25Development Questions Empty Re: Development Questions Thu Jul 01, 2010 6:27 pm

xxnitroxx

xxnitroxx

Development Questions 49283851498_0631820187_o
Death Note (Wood)
Created Your first Forum Topic
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years
Rank Hunter (Bronze)
Obtained The Highest Tier 1 Initate Rank

wow Man! keep it Up!
Hope to See updates like Gun0 Said
and im nitro i just changed my name

Back to top  Message [Page 1 of 3]

Go to page : 1, 2, 3  Next

Permissions in this forum:
You cannot reply to topics in this forum