赞 | 0 |
VIP | 17 |
好人卡 | 1 |
积分 | 0 |
经验 | 8556 |
最后登录 | 2016-8-12 |
在线时间 | 543 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 48
- 在线时间
- 543 小时
- 注册时间
- 2011-6-25
- 帖子
- 441
|
高級腳本(來自外站)
OverlayMapping- module YSA
- module OVERLAY
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # - Overlay Switches -
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # These are switches which are enable overlay layers. Turn them on to show
- # them in your maps.
- #(打開對應開關開啟光亮layer,陰影layer,遠景layer和地面layer(優先級有所不同)
- #--------------------------------------------------------------------------
- # Default: ON
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- LIGHT_SWITCH = 1 # Turn on/off light layer
- SHADOW_SWITCH = 2 # Turn on/off shadow layer
- PARALLAX_SWITCH = 3 # Turn on/off parallax layer
- GROUND_SWITCH = 4 # Turn on/off ground layer
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # - Overlay Variables -
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # A map can have more than one image per layer, that means you can have a
- # different light/shadow for day and night, or have a different ground when
- # an event occured.
- #(切換到另一個layer的變量。)
- #--------------------------------------------------------------------------
- # Default: 1
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- LIGHT_VARIABLE = 2 # Switch to another light
- SHADOW_VARIABLE = 2 # Switch to another shadow
- PARALLAX_VARIABLE = 1 # Switch to another parallax
- GROUND_VARIABLE = 1 # Switch to another ground
-
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # - Filename Prefix -
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # This will make this script automatic, it will check if there are layers in
- # overlay folder(預修正文件名)
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- LIGHT = "light" # Light layer's filename prefix
- SHADOW = "shadow" # Shadow layer's filename prefix
- PARALLAX = "par" # Parallax layer's filename prefix
- GROUND = "ground" # Ground layer's filename prefix
-
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # - Overlay Opacity -
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- # This will make this script automatic, it will check if there are layers in
- # overlay folder(層數設定)
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- GROUND_OPACITY = 255
- PARALLAX_OPACITY = 255
- LIGHT_OPACITY = 128
- SHADOW_OPACITY = 96
- end #OVERLAY
- end # YSA
复制代码 |
|