YesNoOk
avatar

help with stage creation,Pls read. (Read 265 times)

Started by Antixono, December 17, 2012, 03:04:06 am
Share this topic:
help with stage creation,Pls read.
#1  December 17, 2012, 03:04:06 am
  • **
    • Trinidad and Tobago
    • Antixono101@gmail.com
(NOTE:I'm new to making stages so i don't know much this is the first thing i've ever created.)Ok i don't have ,much time so lemme get to the point, I'm making a stage and to can move left and right to the ends of the stage.like this:

but when i add this code
[BG Snow]
type = normal.3
spriteno = 2,0
start = 0, 0
delta =  2.4,2.4
mask = 1
tile = 1,1
velocity = 2,5
layerno = 0

[BG Snow]
type = normal
spriteno = 2,1
start = 0, 0
delta =  2.3,2.3
mask = 1
tile = 1,1
velocity = 1.5,3
layerno = 1
trans = add1

[BG Snow]
type = normal
spriteno = 2,2
start = 0, 0
delta = 2.2
mask = 1
tile = 1,1
velocity = 2.7,1
layerno = 0

[BG Snow]
type = normal
spriteno = 2,3
start = 0, 0
delta =  2.1
mask = 1
tile = 1,1
velocity = 1.5,2
layerno = 1
trans = add1

this happens at the end of the stage:

can someone help me make it like the first pic?with the snow of course
Re: help with stage creation,Pls read.
#2  December 17, 2012, 05:00:18 am
  • *****
  • Mang Of Steel
    • Canada
    • network.mugenguild.com/cybaster/hosted.html
for the weird bleeding effect on the left of the stage, it's a problem with the Stage's bound:
1/ turn debug on (in your stage def, find debugbg = 0, and put 1 instead): this will show you where your sprites end, by using a pure pink color as a background!

2/ now that you can see the limits of your sprites, you will have to manually change some values, so that it works with your sprites sizes:

[Camera]
startx = 0
starty = 0
boundleft = -200  <=== boundleft/boundright are respectively the limit of your stage on the left/right sides
boundright = 200

boundhigh = -100  <=== this is the height of the stage

note: boundleft/boundright should ALWAYS be symmetrical


anyway, you should definitely check this thread (http://mugenguild.com/forum/topics/complete-stage-creation-tutorial-104470.0.html), the Complete Stage Tutorial by Cybaster, for further in-depth knowledge.

good luck
Re: help with stage creation,Pls read.
#3  December 17, 2012, 02:57:10 pm
  • **
    • Trinidad and Tobago
    • Antixono101@gmail.com
thx for help,read the tut allready but seems i forgot.