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

Unwanted black thingy on stage when I insert it in a 640x480 Screenpack

2 posters

Go down  Message [Page 1 of 1]

Guest


Guest
Talk Of The Town (Wood)
Recieved 5 or more likes from other Members
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years

Okay uh
I need help with a stage I'm making
First two screenshots - Default M.U.G.E.N 1.1b by Electbyte
Last two screenshots - 640x480 MICA 1.1 by OldGamer

Screenshots:
https://drive.google.com/file/d/1G5NAbKjTuWsANHYTCrKq2E0rbWT8SJYM/view?usp=sharing
https://drive.google.com/file/d/1NQnvc-vqUw0GNoDCQfbwF9Iy8LQfhA4h/view?usp=sharing

https://drive.google.com/file/d/177selt0eaKncPAsK_JJAWXKTgFq8Y97q/view?usp=sharing
https://drive.google.com/file/d/1_oSnENxyOjn8OYvWziZbTjH29xFI4nfs/view?usp=sharing


How do I exactly fix this?
Here's the coding for the stage

[Camera]
;Camera starting position: Usually 0 for both
startx = 0
starty = 0
boundleft = -1650
boundright = 1650
boundhigh = -2000
boundlow = 0
floortension = 200
tensionhigh = 90
tensionlow = -20
tension = 200
zoomin = 1
zoomout = 0.4

;--------------------------------------------------------
[PlayerInfo]
;--- Player 1 ---
;Player 1 starting coordinates.
p1startx = -690         ;Starting x coordinates
p1starty = 0            ;Starting y coordinates
p1facing = 1            ;Direction player faces: 1=right, -1=left

;--- Player 2 ---
p2startx = 720
p2starty = 0
p2facing = -1

;--- Player 3 ---
p3startx = -490
p3starty = 0
p3facing = 1

;--- Player 4 ---
p4startx = 470
p4starty = 0
p4facing = -1

;--- Common ---
leftbound  = -4000 ;Left bound (x-movement)
rightbound =  4000 ;Right bound

;--------------------------------------------------------
[Bound]
;Distance from left/right edge of screen that player can move to
;Typically 15
screenleft = 60    ;Dist from left of screen that player can move to
screenright = 60   ;Right edge

;--------------------------------------------------------
[StageInfo]
;"Ground" level where players stand at, measured in pixels from the
;top of the screen.
;Adjust this value to move the ground level up/down in the screen.
;***
zoffset = 660
autoturn = 1
resetBG = 1
localcoord = 1280, 720
xscale = 2.7
yscale = 2.7

;--------------------------------------------------------
[Shadow]
;This is the shadow darkening intensity. Valid values range from
;0 (lightest) to 256 (darkest). Defaults to 128 if omitted.
intensity = 86
color = 0,0,0
yscale = .3
fade.range = 0,0

;--------------------------------------------------------
[Reflection]
;Intensity of reflection (from 0 to 256). Set to 0 to have no
;reflection. Defaults to 0.
intensity = 0

;--------------------------------------------------------
[Music]
;Put a filename for a MOD, MP3 or MIDI here, or just leave it
;blank if you don't want music. If an invalid filename is
;given, then no music will play. To play CD audio, put
;the track number followed by ".da". Using a track number of
;0 will play a random audio track. For example, to play
;track 3 from a music CD, use:
;  bgmusic = 3.da
bgmusic = sound/1_petshophftfbattletheme_fla.MainTimeline_petshophftfbattletheme_music.mp3

;bgmloopstart =
;bgmloopend =

;Adjust the volume. 100 is for 100%.
bgmvolume = 100

;========================================================
;--------------------------------------------------------
; Background definition
; ***
;-------------------------------------
; [BG x]
; type = ?       "Normal"/"Parallax"  (def: "normal")
; spriteno = ?, ? Sprite group and number: groupno, imgno  (req'd)
; start = ?, ?   Starting location (integer)  (def: 0, 0)
; delta = ?, ?   Change in location per camera unit moved (float)  (def: 1,1)
; trans = ?      Transparency settings: "none"/"add"/"add1"/"sub"" (def: "none")
; mask = ?       Masking (int): 0 - off, 1 - on  (def: 0)
; velocity = ?, ? Velocity: x, y (float): speed background moves (def: 0, 0)
; tile = ?, ?    Tiling: xtile, ytile (int): 0 - off, 1 - infinite,
;                        >1 - tile that number of times  (def: 0, 0) - only for Normal BG
; tilespacing = ?, ? Tiling: x, y (int) : space between tiles (def: 0, 0)
;  Parallax-only:
; xscale = ?, ?    Top xscale, bottom xscale (float)
; width = ?, ?     Top width, bottom width (int)  (use either this or above, but not both)
; yscalestart = ?  Starting y-scale (float, in percent)  (def: 100)
; yscaledelta = ?  Change in y-scale per unit (float, in percent)  (def: 0)
;-------------------------------------

;-------------------------------------
; Main background definition
[BGdef]
;Filename of sprite data
spr = SSF2v09bKONstageDracoJoestar.sff

;Set to 1 if you want to clear the screen to magenta before
;drawing layer 0 (the default background). Good for spotting "holes"
;in your background.
;Remember to turn this off when you are done debugging the background,
;because it slows down performance.
debugbg = 0


;----------
; Start each background element with the following:
; Make sure it's "[BG n]", where n is anything you like (it's only used to
; report errors.) For example, you could use:  [BG TheFloor]
; Specify as many as you like. This is an example of a normal background:
[BG 0]
type = normal  
spriteno = 1, 0
layerno = 0
start = 0, -50
delta = .75, .75
trans = none
mask  = 1
velocity = -2, 0
tile = 1,1
zoomdelta = .1

;This defines the drawing space, or "window" of the background. It's
;given in the form
;x1,y1, x2,y2
;where (x1,y1)-(x2,y2) define a rectangular box.
;Make the window smaller if you only want to draw part of the background.
;You normally do not have to change this setting. Value values range from
;0-319 for x, and 0-239 for y. The values are 0,0, 319,239 by default (full
;screen).
;Uncomment the line below to use it:
;window = 0,0, 1279, 719

;Similar to the delta parameter, this one affects the movement of
;the window. Defaults to 0,0
;Uncomment the line below to use it:
;windowdelta = 0,0
[BG 1]
type  = normal
spriteno = 0, 0
layerno = 0
start = 0, 137
delta = 1, 1
trans = none
mask  = 1

Filthy Fredo

Filthy Fredo

Unwanted black thingy on stage when I insert it in a 640x480 Screenpack 51631106195_34e64106bd_o
Apple Of The Eye (Platinum)
Recieved 60 or more likes from other Members
Kindred Spirit (Gold)
Liked 30 Forum posts
Survivor (Platinum)
Survived 6 Inactive Account Auto-purges
Deadly Pen Pusher (Bronze)
Created 10 or more Unique Topics
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank

your screenshots dont show up dude. cant see a damn thing


________________________________________________________________________________________________________________________________________________________________________
The Cosmic frog will get you!
Unwanted black thingy on stage when I insert it in a 640x480 Screenpack JABb8Bu
Download My Mugen Stuff Here

Phant0mD

Phant0mD

Unwanted black thingy on stage when I insert it in a 640x480 Screenpack 52697050446_f068e68a44_o
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
★★Thousand Dragon★★
Posted over 1000 Messages
★★Pot Of Prosperity★★
Commissioned/Donated to support Newagemugen
Apple Of The Eye (Platinum)
Recieved 60 or more likes from other Members
The Greatest Showman (Platinum)
Created 40 or more Unique Topics
Kindred Spirit (Gold)
Liked 30 Forum posts
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
★★Dark Master Of Fists★★
Newagemugen Member for over 10 Years

What i find unusual straight away is 3 things:

1) your localcoord settings
2) missing parameters & values in your camera info section.
3) using 720p stage in a 480p SP

Have you read the mugen 1.1 BG tutorial and docs regarding mugen 1.1 stage creation?
Heres a good start point:

http://www.elecbyte.com/mugendocs-11b1/bgs.html
http://www.elecbyte.com/mugendocs-11b1/bg-tut.html


[StageInfo]
zoffset = 660
autoturn = 1
resetBG = 1
localcoord = 1280, 720
xscale = 2.7
yscale = 2.7


Not sure what/why those scale values are there. That may have something to do with your problem.


________________________________________________________________________________________________________________________________________________________________________
Unwanted black thingy on stage when I insert it in a 640x480 Screenpack 39617182812_da9b58ffc9_o
http://www.negative-edge.net

Back to top  Message [Page 1 of 1]

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