预加载

Preloader Core
Version 1.10
SumRndmDde

This plugin requires the Game Upgrade plugin:
http://sumrndm.site/game-upgrade/

This plugin allows developers to preload specific audio and images before
running the game through a new pre-title scene.

==============================================================================
Preload Options
==============================================================================

For all of the audio and img folders, you have four options for preloading
files: none, custom, important, all.

none

If a preload is set to "none", no files from that folder will be preloaded.

custom: f1, f2, ...

If set to "custom", specific files can be selected to be preloaded.
Simply input the filenames, no extensions, and separate each with a comma.
For example - custom: Battle1, Battle2, Theme6

important

If set to "important", then files that are deemed "important" will be
preloaded. What's considered "important" is different for each folder. For
example, important BGMs include ones specified in the database, important
Animation Images include all images used in animations, etc.

all

All files within the folder will be preloaded.
This feature can only be used on Node.js supported platforms.

==============================================================================
Plugin Commands
==============================================================================

If you wish to manually preload audio or images in game, the following
Plugin Commands can be used:

PreloadAudio [folder] [name]

Replace "folder" with one of the audio folders, and replace "name" with one of
the file names within that folder.
For example - PreloadAudio bgm Theme6

PreloadImage [folder] [name] [hue]

Replace "folder" with one of the img folders, and replace "name" with one of
the file names within that folder. You can also use the optional "hue"
argument to have the preloaded image preload a specific hue.
For example - PreloadImage titles1 Book 0

==============================================================================
End of Help File
==============================================================================

Welcome to the bottom of the Help file.

Thanks for reading!
If you have questions, or if you enjoyed this Plugin, please check
out my YouTube channel!

https://www.youtube.com/c/SumRndmDde

Until next time,
~ SumRndmDde

SRD_PreloaderCore的更多相关文章

随机推荐

  1. 调试webpack配置文件

    webpack运行在nodejs上,调试webpack就相当于调试nodejs程序.下面介绍一种通用的办法. 1.配置package.json,加一个debug. { 'scripts': { 'de ...

  2. 动态规划——Valid Permutations for DI Sequence

    We are given S, a length n string of characters from the set {'D', 'I'}. (These letters stand for &q ...

  3. js小笔记

    1.let ,const,var 区别 let:块级作用域,if,for,用完就不存在了. const:用来定义常量. var: 声明的变量在它所声明的整个函数都是可见的. 2.==和===的区别 1 ...

  4. [POJ1220]NUMBER BASE CONVERSION (高精,进制转换)

    题意 任意进制之间的高进的转换 思路 相模倒排,高精处理 代码 我太弱了,下面附一个讨论里发的maigo思路的代码 ],A[]; ],d[]; main(){ for(scanf("%d&q ...

  5. flask之wtforms

    本篇导航: wtforms组件的使用 自定义From组件 一.wtforms组件的使用 1.flask中的wtforms WTForms是一个支持多个web框架的form组件,主要用于对用户请求数据进 ...

  6. (75)Wangdao.com第十三天_JavaScript 包装对象

    包装对象 所谓“包装对象”,就是分别与数值.字符串.布尔值相对应的Number.String.Boolean三个原生对象 这三个原生对象可以把原始类型的值变成(包装成)对象 var v1 = new ...

  7. 十、JSTL标签库

      l JSTL标签库(重点) l 自定义标签(理解) l MVC设计模式(重点中的重点) l Java三层框架(重点中的重点) JSTL标签库 1 什么是JSTL JSTL是apache对EL表达式 ...

  8. Python函数中的列表

    在看21天的Python书中写出了一个陷阱,但没给出解释,以下为代码陷阱

  9. archlinux下安装acroread打开pdf

    虽说acroread是个好东西,但是在打开pdf几秒后总是自动退出呢 在其aur网页下找到了这么一解决办法: 打开终端输入 sudo unshare -n sudo -u ${USER} ACRO_A ...

  10. 工厂参观记:.NET Core 中 HttpClientFactory 如何解决 HttpClient 臭名昭著的问题

    在 .NET Framework 与 .NET Core 中 HttpClient 有个臭名昭著的问题,HttpClient 实现了 IDispose 接口,但当你 Dispose 它时,它不会立即关 ...