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的更多相关文章
随机推荐
- XVIII Open Cup named after E.V. Pankratiev. Eastern Grand Prix
A. Artifacts 建立语法分析树,首先根据上下界判断是否有解,然后将所有数按下界填充,线段树判断是否存在和超过$K$的子区间. B. Brackets and Dots 最优解中一定包含一对中 ...
- MongDB增删改查
增加 增加一条:db.th.insertOne({}) // 返回 _id 增加多条:db.th.insertMany([{},{},{}]) // 返回 _ids 针对Array增加操作: db.s ...
- css 颜色表示法
css颜色值主要有三种表示方法: (1)颜色名表示,如:red红色,gold金色 (2)rgb表示,如:rgb(255,0,0)表示红色 (3)16进制数值表示,如:#ff0000表示红色,这种可以简 ...
- 如何使用RestTemplate访问restful服务
一. 什么是RestTemplate 传统情况下在java代码里访问restful服务,一般使用Apache的HttpClient.不过此种方法使用起来太过繁琐.spring提供了一种简单便捷的模板类 ...
- CSS3_动画 animation
在项目中,颜色,图片,等等数据都保存在数组中 动画 使元素从一种样式逐渐变化到另一种样式的 animation: name ; 无顺序要求,但是必须先写 持续时间 ,再写 延迟时间 原理 人眼在看 ...
- file_get_contents 在本地测试可以, 但在服务器上报错403
解决方法: Most likely if you don't get any content while accessing an webpage, probably it doesn't want ...
- tomcat错误The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
在更换tomcat版本后,原来的项目文件中jsp会出现错误The superclass "javax.servlet.http.HttpServlet" was not found ...
- vscode插件安装失败的解决方案
在vscode中点击对应插件的install按钮安装,安装失败,软件提示手动安装(manually install). 手动下载vsix安装包,然后点击install from VSIX...,选择v ...
- Kruskal模板
Kruskal模板 struct Edge { int from,to,v; }edge[maxn*10]; int fa[maxn]; int n,m; int find(int x) { retu ...
- PAT甲级1034 Head of a Gang【bfs】
题目:https://pintia.cn/problem-sets/994805342720868352/problems/994805456881434624 题意: 给定n条记录(注意不是n个人的 ...