预加载

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. window.open 打开全屏窗口

    window.open新打开页面为全屏状态,各个浏览器情况不一致. window.open   弹出新窗口的命令:     'page.html'   弹出窗口的文件名:     'newwindow ...

  2. 2019-2-25SqlServer 中所有表、列、视图、索引、主键、外键等常用sql

    sp_help Accounts_Users     其中Accounts_Users 表示表名 sp_columns Accounts_Users exec  sp_helpconstraint   ...

  3. 4.2模拟赛 wormhole(期望DP Dijkstra)

    \(\color{white}{orzmjt又切题了...}\) \(Description\) 给定一张有向图,每条边在每一时刻有\(p_i\)的概率存在.求最优策略下从\(1\)走到\(n\)最少 ...

  4. 作用域和闭包(二)this

    this 要在执行时才确认,定义时无法确认 1. 作为构造函数执行 2. 作为对象属性执行 3.作为普通函数执行 4. call,apply,bind 改变this

  5. angular.isDefined()

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  6. jquery提示sucess

    这是学习笔记. 今天做东西的时候,想把体验做好,于是打算再ajax success字段中添加函数实现提示sucess. 用了jquery的fadeIn 跟fadeOut,再fadeIn的callbac ...

  7. javaScript---RegExp

    字符串是编程时涉及到的最多的一种数据结构,对字符串进行操作的需求几乎无处不在.比如判断一个字符串是否是合法的Email地址,虽然可以编程提取@前后的子串,再分别判断是否是单词和域名,但这样做不但麻烦, ...

  8. nodejs----微信注册测试号获取token

    var PORT=8081; //监听8080端口号 var http=require('http'); var qs=require('qs'); var TOKEN='yezhenxu'; //必 ...

  9. C++中继承与抽象类

    继承语法格式如下: class 子类名称 : 继承方式(public private protected 三种) 父类名称 纯虚函数格式: virtual 返回值类型 函数名(参数列表)= 0:含有纯 ...

  10. Gym 101606B - Breaking Biscuits - [凸包+旋转卡壳][凸包的宽度]

    题目链接:https://codeforces.com/gym/101606/problem/B 题解: 对于给出的 $n$ 个点,先求这些点的凸包,然后用旋转卡壳求出凸包的宽度(Width (min ...