SRD_PreloaderCore
预加载
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的更多相关文章
随机推荐
- Mouse w/o Borders实现两台主机共用一套键鼠方法及问题处理
因为经常遇到同时用到实验室配备的主机和自己的笔记本同时使用的场景,两台设备需要切换两套键鼠很麻烦,这里介绍一个微软开发的一个免费软件Microsoft Garage Mouse without Bor ...
- [LeetCode] Insert into a Cyclic Sorted List 在循环有序的链表中插入结点
Given a node from a cyclic linked list which is sorted in ascending order, write a function to inser ...
- transient关键字的使用
实例说明 在保存对象时,会将对象的状态也一并保存,然而有些状态是不应该被保存的,如表示密码的属性.此时可以使用transient关键字来修饰不想保存的属性. 关键技术 transient关键字用来防止 ...
- 内核kmalloc内存越界排查过程(转)
https://blog.csdn.net/hjkfcz/article/details/84500026 内核为了效率,memcpy完全是有汇编实现,加入c代码很困难.可以采用jprobe技术,动态 ...
- Lambda查询
使用EF查询数据库,之前使用Linq表达式,现在改成另一个种方法查询:Lambda表达式 TestEntities db=new TestEntities(); ).FirstOrDefault(); ...
- centos7 部署vnc
不做过多介绍了,下面直接记录下centos7系统下安装配置vncserver的操作记录 0)更改为启动桌面或命令行模式 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 ...
- eclipse启动报错
我的是win64位系统,eclipse,jdk1.8 64位 原因:网上说是jdk和eclipse的版本不一致导致的(32位jdk64位eclipse,或者相反): 解决过程: 安装了jdk1. ...
- 图片上传组件webuploader
前端组件webuploader 当时也是搞了很久参考这种demo,但是没记.现在事后大致总结下.直接上大概代码(我使用asp.net MVC来做的): 执行顺序:(get)Record/Add——A ...
- YOLO V3 错误总结
问题1 TypeError: function takes exactly 1 argument (3 given) 报错说PIL库中的函数只接收到一个参数,应该给三个,自己在这里记录下解决方法,出错 ...
- uCOS-II
/****************************************************/ **关于移植,ucos官网上给的有template,主要思想是实现任务切换的两个函数(任务 ...