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的更多相关文章
随机推荐
- struts2的java.lang.NoSuchMethodException错误
不久前在学习struts时出现这个错误,在网上搜索了半天,发现答案不一.将其总结如下,以方便大家参考. 1. 你有没有试试看 其它的方法能不能用,要是都是这种情况的话,可能是你的Action类没有继承 ...
- 动态规划——Best Time to Buy and Sell Stock III
题意:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格. 如果最多进行两次交易,但必须在买进一只股票前清空手中的股票,求最大的收益. 示例 1:Input: [3,3,5,0,0,3 ...
- vue_过滤器: 对要显示的数据进行特定格式化后再显示
过滤器 对要显示的数据进行特定格式化后再显示 并未改变原本的数据,可是产生新的对应的数据 <!DOCTYPE html> <html lang="en"> ...
- 2、vuex页面刷新数据不保留,解决方法(转)
今天这个问题又跟页面的刷新有一定的关系,虽然说跟页面刷新的关系不大,但确实页面刷新引起的这一个问题. 场景: VueX里存储了 this.$store.state.PV这样一个变量,这个变量是在app ...
- Python学习之旅(三十七)
Python基础知识(36):访问数据库(Ⅰ) 程序运行的时候,数据都是在内存中的.当程序终止的时候,通常都需要将数据保存到磁盘上,无论是保存到本地磁盘,还是通过网络保存到服务器上,最终都会将数据写入 ...
- css学习_css3过渡
1.css3过渡 注意:记住多属性设置的方式:若把过渡写在了hover里面的话鼠标移走时不会有过渡效果!:不同属性同时变时用 all 就可以实现了. 2.css3 transform属性 1.移动 ...
- 20165311 《网络对抗技术》 Kali安装
一.目的要求 下载 安装 网络 共享 软件源 二.主要步骤 从官网下载软件安装包 安装的比较顺利 具体截图就不放上来了 安装结果图: 网络配置和共享文件夹设置 网络配置: 由于我之前安装虚拟机,所以并 ...
- transform:translate(-50%,-50%)实现水平垂直居中
.content { padding:10px; background:green; color:#fff; position:absolute; top:50%; ...
- Jquery获取输入框属性file,ajax传输后端,下载图片
Django web开发获取input属性file,可以用request.FILES.get(' ')直接获取到,然后正常拼接路径就可以下载, 但是今天我们来用异步获取file的值在传输后端下载. 1 ...
- 与PON相关的abbreviation
AAL:Asynchronous transfer mode Adaptation Layer 异步传输适配层 ACS:Autoconfiguration Server 自动配置服务 ADSL:Asy ...