YEP_footstepsounds
脚步声插件
============================================================================
Introduction
============================================================================
This plugin gives your player and/or events footsteps when they walk onto
tiles. These footsteps made by players and/or events can have different
sounds based on regions, tilesets, and/or terrain tags. If footsteps are
enabled for events, they can have distance based volumes and pitches to
immerse the player further.
This is a collaboration plugin by Chickie and Yanfly to ensure compatibility
with the Yanfly Engine Plugins library.
============================================================================
Instructions
============================================================================
This plugin requires a bit of setup. Adjust the plugin parameters to set up
a default set of footsteps that are to be played when nothing else has been
set. These sound effects will be played when there are no region-specific
sound effects or terrain tag-specific sound effects.
That said, if you go into your project's database and go to the Tilesets tab
you can set footsteps for each tileset. The tiles can play specific footstep
sounds based on their terrain tag ID. Look in the notetags section below for
the notetag setup on how to make a set of tiles play certain footsteps. The
footsteps made here have higher priority than the default sound effects and
if the player or event steps on a tile that has a footstep sound tied to a
terrain tag, that footstep sound will be played instead.
Even higher on the priority level are the region-based footstep sounds. If
the player or an event steps on a tile that has a region-based footstep
sound, then that sound will be played regardless of the terrain tag setting
made for that specific tile. Look in the notetags section below for the
notetag setup on how to make a specific region ID play a footstep sound.
To sum it up, from lowest to highest priority:
LOWEST - Default Footstep Sound
Terrain Tag Footstep Sound
HIGHEST - Region-Based Footstep Sound
If you wish to give a whole map a certain footsteps sound, use the notetag
to set a region-based footstep sound for region ID 0.
============================================================================
Notetags
============================================================================
Insert the following notetags to add footsteps to your maps.
Event Notetag:
<No Footsteps>
- Insert this into the notebox of any event you wish to not make any
footsteps when moving.
Tileset Notetags:
<Terrain Tag x Footstep Sound: filename>
<Terrain Tag x Footstep Sound: filename, volume>
<Terrain Tag x Footstep Sound: filename, volume, pitch>
地图标记
- Replace 'x' with the terrain tag ID (from 1 to 7). If 0 is used, it will
be ignored. When inserting the filename, the filename must be case
sensitive and must not include the extension. The 'volume' and 'pitch'
variables must be integar values between 0 and 100 if they are used.
Examples:
<Terrain Tag 1 Footstep Sound: Move1>
<Terrain Tag 2 Footstep Sound: Move2, 80>
<Terrain Tag 3 Footstep Sound: Move3, 75, 150>
In the above examples, the tiles marked by terrain tags 1, 2, or 3 will
play their respective sound effect when stepped on by the player or an
event that can trigger footsteps.
Map Notetags:
<Region x Footstep Sound: filename>
<Region x Footstep Sound: filename, volume>
<Region x Footstep Sound: filename, volume, pitch>
- Replace 'x' with the region tag ID (from 1 to 255). If 0 is used, it
will become the default footstep sound. When inserting the filename, the
filename must be case sensitive and must not include the extension. The
'volume' and 'pitch' variables must be integar values between 0 and 100 if
they are used.
Examples:
<Region 10 Footstep Sound: Move1>
<Region 20 Footstep Sound: Move2, 80>
<Region 30 Footstep Sound: Move3, 75, 150>
In the above examples, the tiles marked by regions 10, 20, or 30 will play
their respective sound effect when stepped on by the player or an event
that can trigger footsteps.
============================================================================
Plugin Commands
============================================================================
If at any time you wish to enable/disable footstep sounds in your game, you
can use some plugin commands to do so.
Plugin Commands:
EnableFootsteps
- Turns on footstep sounds.
DisableFootsteps
- Turns off footstep sounds.
YEP_footstepsounds的更多相关文章
随机推荐
- 2017-10-22—发光二极管
LED与 LD的差别在工作原理上的差别:LED是利用注入有源区的载流子自发辐射复合发光,而LD是受激辐射复合发光.在结构上的差别:LD有光学谐振腔,使产生的光子在腔内振荡放大,LED没有谐振腔.性能上 ...
- Django——RESTful架构
一.REST简述 来自维基百科的解释: 表现层状态转换(REST,英文:Representational State Transfer)是Roy Thomas Fielding博士于2000年在他的博 ...
- 17使用systemd方式开机自动启动Home Assistant服务
2018-03-20 15:48:36 转移自网易博客! 首先使用编写文件hass@homeassistant.service,文件内容如下 # 这个文件用于systemd方式自动启动hass服务.# ...
- ActiveMQ的安装与使用(单节点)
1. 安装 JDK 并配置环境变量(略) JAVA_HOME=/usr/local/java/jdk1.7.0_72 2. 下载 Linux 版的 ActiveMQ $ wget http://apa ...
- jsp模板继承
jsp通过自定义标签实现类似模板继承的效果 关于标签的定义.注册.使用在上面文章均以一个自定义时间的标签体现,如有不清楚自定义标签流程的话请参考这篇文章 http://www.cnblogs.com/ ...
- Windows系统JDK安装配置
JDK和JRE的安装 打开java的官方网站,下载安装程序,版本根据自己情况选择: 双击安装程序: 点击"下一步": 此处推荐默认路径安装,如果自定义安装目录,则需记住自定义的安装 ...
- 5m21d缓冲区溢出学习笔记
mysql链接字符串函数 concat(str1,str2) concat_ws(separator,str1,str2....) group_concat(str1,str2....) mysql的 ...
- n&m位运算
在C/C++语言里,&代表取地址或者“位与”运算 1.取变量的地址:&变量名,这将获得该变量的地址,例:int a = 1, &p = a. 2.进行位与运算,格式是:变量1& ...
- django项目同一用户不能同时登陆
1.session认证 ..... login(request, user) #登录成功 # 登录之后获取获取最新的session_key session_key = request.session. ...
- 初识Restful架构
1.对Rest(Restful)的理解 理解RESTful架构 怎样用通俗的语言解释REST,以及RESTful 维基百科:Representational state transfer 2.Rest ...