帧率调节插件

============================================================================
Introduction
============================================================================

This plugin is to be used with RPG Maker MV version 1.1.0 and upward.

RPG Maker MV is constructed in a way where each update to its engine is done
once per frame update. While this is normally fine, as many players view the
game through 60 fps, some players experience the game differently as their
hardware may run at higher than 60 fps.

When RPG Maker MV version 1.1.0 is implemented, it implemented Galenmereth's
fluid timestep, which forces the game to always play as if it is 60 fps. In
practice, this is great for everybody because players that experience more
60 fps will be able to play the game as if it was 60 fps.

However, there comes a problem when a player's hardware isn't strong enough
to support RPG Maker MV natively at 60 fps (such as the case with older
computers, or weaker mobile devices) or if the player is using video
recording software that goes below 60 fps. The game will appear laggy and
jumping without good response rates from input commands or possibly even
make the player miss out on certain visual frame updates.

This plugin places a setting in the Options menu to enable or disable the
fluid timestep addition and utilize the former RPG Maker MV engine updating
function. This way, players will have the option of using fluid timesteps or
opting to not use it instead of forcing it on everybody who may not be able
to handle it.

============================================================================
Changelog
============================================================================

Version 1.02:
- Updated for RPG Maker MV version 1.5.0.

Version 1.01:
- The plugin is now prevented if the project's core files are under version
RPG Maker MV 1.1.0.

Version 1.00:
- Finished Plugin!

YEP_fpssynchoption的更多相关文章

随机推荐

  1. 关于linux上部署定时python脚本

    遇到的坑: Python脚本中的文件操作,最好都用绝对路径, 文件头上写 #!/usr/local/bin/python3.6 ----------------------------------- ...

  2. 开源搜索引擎solr elasticsearch学习计划

    其实不单单是研究solr elasticsearch把,进行调研性技术学习时,应该制定一些目标以及里程碑.新的技术调研 学习是一件很爽的事,能学到新技术新东西.但是在学习新技术同时,有几个问题是需要我 ...

  3. SSM框架主要几个注解的位置

    @Controller @Service @Repository @Component Controller (控制层) Service (业务层) daoImpl (实现层) 模糊注解 @Autow ...

  4. Python——Redis相关知识

    一.连接 Redis import redis 连接方式:redis提供了2个方法 1:StrictRedis:实现大部分官方的命令 2:Redis:是StrictRedis的子类,用于向后兼容旧版的 ...

  5. JS对象2

    1.Date对象 创建对象 //方法1:不指定参数 var nowd1=new Date(); alert(nowd1.toLocaleString( )); //方法2:参数为日期字符串 var n ...

  6. React(五)State属性

    React 里,只需更新组件的 state,然后根据新的 state 重新渲染用户界面(不要操作 DOM). 以下实例创建一个名称扩展为 React.Component 的 ES6 类,在 rende ...

  7. vue_VueRouter 路由_路由器管理n个路由_并向路由组件传递数据_新标签路由_编程式路由导航

    路由:就是一个 key 与 value 的映射关系.key 就是 pathh 前台路由的 value 是 Component 组件对象 后台路由的 value 是一个 回调函数 普通链接: 会发送请求 ...

  8. 嵌入式linux内存越界定位和解决 (转)

    https://blog.csdn.net/meejoy/article/details/41729585 https://blog.csdn.net/killmice/article/details ...

  9. 解决 AutoMapper ProjectTo 不起作用的问题

    这两天在一个 ASP.NET Core 项目中遭遇了 AutoMapper ProjectTo 不起作用的奇怪问题,虽然在 ProjectTo 中指定了 DTO ,但 EF Core 生成的 SQL ...

  10. 使用sessionStorage进行数据存值

    <!DOCTYPE html> <head> <meta charset="UTF-8" /> <meta name="view ...