RPG Maker MV

RPG Maker MV

LuN Dec 24, 2022 @ 5:47am
Some Problems with Plugin GALV LayerGraphics
1- I have a looping map with a fog layer ontop, and when i go too far to the edges there is a point where the fog lags / changes position

2- how can i make multiple layers in one map? I use the note function in the maps settings but when i put more than one command there, only the first one works. Do i have to separate them somehow?
< >
Showing 1-4 of 4 comments
rooge Dec 24, 2022 @ 6:54am 
Commands for layers must be separated in the map notes, that is, one per line. If you only see one layer, even though you want to use more, check the layer numbering. If you have multiple layers, but all are labeled Layer 1, only one will be displayed because it will overwrite the previous ones.

Here is an example from my game:
LAYER_S 1 Map001G 0 0 255 1 0
LAYER_S 2 Map001T 0 0 255 4 0
LAYER 5 Clouds_2 0.25 -0.25 200 27 0 0 0

Layers marked with LAYER_S are static. Their size is the same as the size of the map. The first number after LAYER_S is the layer ID. Each layer must have a different number to avoid overwriting.

The layer labeled LAYER is moving. In my case, it's the clouds. The size here must be slightly larger than the size of the game screen. In my case the game resolution is 1344x768 and the cloud image is 2048x2048. However, the map size is 2592x2592.


Read the plugin instructions carefully.
LuN Dec 24, 2022 @ 12:59pm 
okay thx. i understand now how to make more than one layer but i still have the problem with the glitch. I have a looping map on all sides and when i step to one side the layer jumps a bit
rooge Dec 24, 2022 @ 4:11pm 
Galv's plugin is pretty versatile, but not ideal for this particular situation. For the loop map purpose, using a plugin designed specifically for fog seems best. Try this VE_FogAndOverlay. I tested it and I didn't experience any laging or fog direction changes when moving around the map.
LuN Dec 24, 2022 @ 6:28pm 
thx i will try this
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Dec 24, 2022 @ 5:47am
Posts: 4