Alex ML Lv 1
Nº de Posteos : 19 Fecha de inscripción : 2012-09-09 Localización : Silent Hill
| Subject: Re: MUGEN 1.1 Alpha 4 Mon May 06, 2013 3:01 pm | |
| hay algun tutorial sobre como cambiar un stage de mugen 1.0 a 1.1 |
|
Tapion Administrador
Nº de Posteos : 1465 Fecha de inscripción : 2009-11-02 Edad : 34
| Subject: Re: MUGEN 1.1 Alpha 4 Mon May 06, 2013 3:42 pm | |
| no es muy complicado. en mugen guild hay un post, pero esta en ingles- aca te lo cito: - Spoiler:
I realize not many people have access to the alpha version of 1.1 at this time but nevertheless this thread should save people a lot of headache when the public release rolls around.
Stage Zoom and Camera Bounds Stages now support the zoomin and zoomout parameters which determine the minimum and maximum amount of the stage that can be shown at once. Zoomin should usually be kept at the default value of 1.0 while zoomout will be a value less than one and greater than 0. The maximum zoomout dimensions are also automatically factored into the camera bounds, so there is some math involved in order to keep your stages in bounds. [mcode][Camera] boundhigh = -544 boundlow = 0 boundleft = -192 boundright = 192[/mcode] For a high resolution stage (640x480) of size 1024x1024, these are the camera settings you'd expect to have. However, if we allow the stage to zoom out to the entire stage width we would see these settings instead: [mcode][Camera] boundhigh = -256 boundlow = 0 boundleft = 0 boundright = 0 zoomin = 1 zoomout = 0.625[/mcode] To get our scale factor, we divide our screen width by the stage's total width: 640/1024 = 0.625 Then to adjust the boundhigh, we subtract the stage height by the maximum visible stage height 1024-(480/0.625) = 256
If we want to set an arbitrary zoom factor rather than one that goes the whole width of the stage, we can use this method instead: [mcode][Camera] boundhigh = -424 boundlow = 0 boundleft = -112 boundright = 112 zoomin = 1 zoomout = 0.8[/mcode] 1024-(640/0.8 ) = 224 - Horizontal pixels not visible at any given time 224/2 = 112 - Camera left and right bounds 1024-(480/0.8 ) = 424 - Vertical pixels not visible at any given time Again this is with a 1024x1024 stage.
como veras solo tenes que agregar los parametros zoomin y zoomout y configurar los valores a cordes a la stage. espero que te sirva _________________ COMING SOON!!!!!: |
|
mgmnzx Lv 10
Nº de Posteos : 1473 Fecha de inscripción : 2009-10-30 Edad : 29 Localización : Chile
| Subject: Re: MUGEN 1.1 Alpha 4 Mon May 06, 2013 7:17 pm | |
| - Alex ML wrote:
- hay algun tutorial sobre como cambiar un stage de mugen 1.0 a 1.1
Agregale en la parte del def de la stage, en Camera lo siguiente: - Quote :
- [Camera]
startx = 0 starty = 0 boundleft = -500 boundright = 500 boundhigh = -450 boundlow = 0 verticalfollow = .85 floortension = 200 tension = 200 overdrawhigh = 120 overdrawlow = 120 cuthigh = 0 cutlow = 0 zoomin = 1 ; zoom maximo zoomout = 0.5 ; zoom minimo
Otra cosa, en esta version de mugen puedes usar imágenes png con transparencias, y sin limite de colores |
|
Iory Lv 9
Nº de Posteos : 904 Fecha de inscripción : 2010-05-01 Edad : 26 Localización : Misiones
| Subject: Re: MUGEN 1.1 Alpha 4 Mon May 06, 2013 8:26 pm | |
| Perfecto , me habia bajado la beta del 1.1 pero no entendi un carajo xD.. Lo que si no tenia select, practicamente no tenia screenpack |
|
Sponsored content
| Subject: Re: MUGEN 1.1 Alpha 4 | |
| |
|