collapse

Author Topic: How do I build a stage out of chopped pictures?  (Read 986 times)

0 Members and 1 Guest are viewing this topic.

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
How do I build a stage out of chopped pictures?
« on: August 20, 2007, 07:25:28 PM »
I noticed some people make stages by cutting up a picture and putting them all in one group, but how do I do this? O_o
« Last Edit: August 29, 2007, 02:42:44 AM by Zeiram/vkm »



Offline BigJ

  • Contributor
  • ****
  • Posts: 2659
  • Country: United States us
  • Last Login:March 25, 2015, 02:28:49 PM
    • BigJ's Mugen site
Re: How do I build a stage out of cutted pictures?
« Reply #1 on: August 20, 2007, 07:42:24 PM »
what do you mean? You can take a picture and cut it up into little squares so that you don't lose any quality when you convert it to 256 colors. After that, just put it together in fighter factory.

Offline nick09

  • Contributor
  • ****
  • Posts: 3481
  • Last Login:December 21, 2011, 10:16:38 PM
  • Avatar Credit to CD.
    • Nick09's creations
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #2 on: August 20, 2007, 08:24:18 PM »
i use XnView.

google it.

Offline b.easy

  • Global Moderator
  • *
  • Posts: 1644
  • Last Login:December 01, 2022, 11:28:07 PM
Re: How do I build a stage out of cutted pictures?
« Reply #3 on: August 21, 2007, 12:24:32 AM »
chop the picture up into neat little 256 color chunks and align it all together in fighter factory. if you see crazy wavy clone lines you have empty space in your stage.

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #4 on: August 21, 2007, 07:20:32 AM »
chop the picture up into neat little 256 color chunks and align it all together in fighter factory. if you see crazy wavy clone lines you have empty space in your stage.
I have it all ready, I just need to know what I'm supposed to do with the palette.

Offline nick09

  • Contributor
  • ****
  • Posts: 3481
  • Last Login:December 21, 2011, 10:16:38 PM
  • Avatar Credit to CD.
    • Nick09's creations
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #5 on: August 21, 2007, 08:14:34 AM »
you don't need a palette for an stage.

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #6 on: August 21, 2007, 04:56:44 PM »
Thanks. I'm just trying to figure out how in the world I'm supposed to code it.

Offline Sgt Hartsock

  • Infinity Regular
  • ****
  • Posts: 827
  • Last Login:November 07, 2008, 11:47:43 PM
  • Nice, decent kind of guy
    • 1UP.com hub
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #7 on: August 22, 2007, 07:43:14 PM »
"cutted" isn't a word dude..might want to edit your topic name...anyway, I beleive eternaga has a good tutorial somewhere

Offline BigJ

  • Contributor
  • ****
  • Posts: 2659
  • Country: United States us
  • Last Login:March 25, 2015, 02:28:49 PM
    • BigJ's Mugen site
Re: How do I build a stage out of cutted pictures?
« Reply #8 on: August 22, 2007, 08:44:25 PM »
Thanks. I'm just trying to figure out how in the world I'm supposed to code it.

just code it like a normal BG. only in your case, you'd have a bunch of [BG]'s in the def. for example:

[BG peice1]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice2]
spriteno = 1, 1
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice3]
spriteno = 1, 2
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

etc. etc. until you have all of the pieces together.
« Last Edit: August 22, 2007, 10:04:45 PM by BigJ »

Offline nick09

  • Contributor
  • ****
  • Posts: 3481
  • Last Login:December 21, 2011, 10:16:38 PM
  • Avatar Credit to CD.
    • Nick09's creations
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #9 on: August 22, 2007, 09:03:17 PM »
Thanks. I'm just trying to figure out how in the world I'm supposed to code it.

just code it like a normal BG. only in your case, you'd have a bunch of [BG]'s in the def. for example:

[BG peice1]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice2]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice3]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

etc. etc. until you have all of the pieces together.

make sure the image no is different for each image.
or you will be putting the same images together.

Offline BigJ

  • Contributor
  • ****
  • Posts: 2659
  • Country: United States us
  • Last Login:March 25, 2015, 02:28:49 PM
    • BigJ's Mugen site
Re: How do I build a stage out of cutted pictures?
« Reply #10 on: August 22, 2007, 10:04:16 PM »
Thanks. I'm just trying to figure out how in the world I'm supposed to code it.

just code it like a normal BG. only in your case, you'd have a bunch of [BG]'s in the def. for example:

[BG peice1]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice2]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice3]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

etc. etc. until you have all of the pieces together.

make sure the image no is different for each image.
or you will be putting the same images together.

Yeah, thanks for pointing that out nick, I'm gonna edit my post. :)

Offline nick09

  • Contributor
  • ****
  • Posts: 3481
  • Last Login:December 21, 2011, 10:16:38 PM
  • Avatar Credit to CD.
    • Nick09's creations
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #11 on: August 23, 2007, 08:05:08 AM »
Thanks. I'm just trying to figure out how in the world I'm supposed to code it.

just code it like a normal BG. only in your case, you'd have a bunch of [BG]'s in the def. for example:

[BG peice1]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice2]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

[BG peice3]
spriteno = 1, 0
layerno = 0
start = 0, 0
delta = 1, 1
mask = 1

etc. etc. until you have all of the pieces together.

make sure the image no is different for each image.
or you will be putting the same images together.

Yeah, thanks for pointing that out nick, I'm gonna edit my post. :)

no prob. 8)

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #12 on: August 29, 2007, 02:26:27 AM »
Thanks guys, but I'm just wondering how to code it as an animated stage.  ???
Anyways so far so good, but I have plans to put a wooden floor in, as well as some lights flashing.

Offline Sgt Hartsock

  • Infinity Regular
  • ****
  • Posts: 827
  • Last Login:November 07, 2008, 11:47:43 PM
  • Nice, decent kind of guy
    • 1UP.com hub
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #13 on: August 29, 2007, 02:32:03 AM »
ok cool, just remember, "Cutted" isn't a word

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of cutted pictures?
« Reply #14 on: August 29, 2007, 02:43:10 AM »
ok cool, just remember, "Cutted" isn't a word
I'm not a perfectionist so
 :P

Offline Sgt Hartsock

  • Infinity Regular
  • ****
  • Posts: 827
  • Last Login:November 07, 2008, 11:47:43 PM
  • Nice, decent kind of guy
    • 1UP.com hub
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #15 on: August 29, 2007, 02:44:50 AM »
well good grammar helps ;)

Offline MaverickZr0

  • S-Rank
  • Contributor
  • ****
  • Posts: 2462
  • Country: United States us
  • Last Login:November 25, 2016, 02:18:47 AM
Re: How do I build a stage out of chopped pictures?
« Reply #16 on: August 29, 2007, 03:24:33 AM »
Well good grammar helps. ;)
  :) Capital letters and periods rule!
« Last Edit: August 29, 2007, 03:26:31 AM by Zero »

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #17 on: August 29, 2007, 03:26:52 AM »
Okay so how do I make things just pop up. I have these pictures set up perfectly but I have no idea how I'm going to code them.  ~X(

Offline MaverickZr0

  • S-Rank
  • Contributor
  • ****
  • Posts: 2462
  • Country: United States us
  • Last Login:November 25, 2016, 02:18:47 AM
Re: How do I build a stage out of chopped pictures?
« Reply #18 on: August 29, 2007, 03:27:38 AM »
Do you mean pop up in front of the characters, or pop up like an animation?

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #19 on: August 29, 2007, 03:32:19 AM »
pop up like an animation, you know like the lights in neon sign's at casino's.

Offline Sgt Hartsock

  • Infinity Regular
  • ****
  • Posts: 827
  • Last Login:November 07, 2008, 11:47:43 PM
  • Nice, decent kind of guy
    • 1UP.com hub
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #20 on: August 29, 2007, 03:35:32 AM »
hey is your stage from a game or something?? what is the stage going to be??

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #21 on: August 29, 2007, 04:08:04 AM »
hey is your stage from a game or something?? what is the stage going to be??
Right now it's a secret, all I can say is it's original.

Offline Violent Ken Masters

  • Contributor
  • ****
  • Posts: 4379
  • Last Login:April 17, 2017, 01:52:10 AM
  • WELCOME TO DIE!!!
    • Violent Ken's site
    • Email
Re: How do I build a stage out of chopped pictures?
« Reply #22 on: August 29, 2007, 05:04:03 AM »
Nevermind! I'm good! I'm going to release it in a few hours.
I just had to turn bg1 into an animation.

Tags:
 


* IMT Facebook

Help us by Donating!

IMT Discord

Join us at our Discord! Click the image below!

* IMT Shoutbox

Sorry, this shoutbox does not exist.

* Recent Posts

Classic VS : Athena by ELECTRO
[May 10, 2024, 02:44:09 PM]


Ballroom Hallway (1.1 Only/AIGS) by Vegaz by LightFlare
[May 09, 2024, 11:53:48 AM]


Neon Light Force Demo by kyoman
[May 08, 2024, 12:50:05 PM]


D2TD VS Showcase Thread by D2TD
[May 05, 2024, 10:08:50 AM]


Lasombra's IKEMEN Go Interactive Stages' WIP Topic and Releases by Lasombra Demon
[April 21, 2024, 12:09:20 PM]


Ultimate E. Honda + stage by ELECTRO
[April 18, 2024, 09:47:24 PM]


Sunset Beach (1.1 Only/AIGS) by Vegaz by LightFlare
[April 16, 2024, 06:55:00 PM]


Wonder Twins 2.0 by brucewayne74, Shining and Skhsato123 by brucewayne74
[April 05, 2024, 06:07:48 PM]


X-Men Training Room (Bright & Dark) Stage 1.1 & 1.0 by MatreroG
[April 05, 2024, 10:55:29 AM]


[WIP] Pocket Dimensional Clash 2 by O Ilusionista
[April 01, 2024, 11:03:03 PM]

* IMT Calendar

May 2024
Sun Mon Tue Wed Thu Fri Sat
1 2 3 4
5 6 7 8 9 10 [11]
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

SimplePortal 2.3.5 © 2008-2012, SimplePortal