Elemental Skill Colors – C++ MV Plugin
This is a port of the first MV plugin I had ever developed; however instead of using JavaScript, this version is entirely written in C++! Using node-gyp, a native NodeJS module is used to interact with the global namespace of the MV game and modifies the desired functions with native, C++ code.
這是我開發(fā)的第一個(gè)MV插件的一個(gè)端口; 然而,不是使用JavaScript,這個(gè)版本完全是用C ++編寫的!使用node-gyp,本地NodeJS模塊用于與MV游戲的全局名稱空間進(jìn)行交互,并使用本機(jī)C ++代碼修改所需的功能。
In order to install, simply download the precompiled ZIP version (only works on Windows and MV projects at version 1.5.2 or below). Extract the ZIP in the plugins folder so that the “native-plugins” folder is within the plugins folder. Install the SRD_ElementalSkillColors.js file like any other plugin and you’ll be good to go!
為了安裝,只需下載預(yù)編譯的ZIP版本(僅適用于1.5.2或更低版本的Windows和MV項(xiàng)目)。提取plugins文件夾中的ZIP文件,以便“native-plugins”文件夾位于plugins文件夾中。像其他任何插件一樣安裝SRD_ElementalSkillColors.js文件,您將會很開心!
This plugin is nothing more than a proof of concept. For this plugin in particular, there are no performance benefits. However, if a larger product (such as HUD Maker, a pixel-movement plugin, etc.) was built more into the C++ context, there would be drastic improvements.
這個(gè)插件無非是一個(gè)概念證明。特別是對于這個(gè)插件,沒有性能優(yōu)勢。但是,如果更大的產(chǎn)品(例如HUD Maker,像素移動插件等)更多地構(gòu)建在C ++上下文中,則會有顯著的改進(jìn)。
Please note, this plugin will only function within NodeJS environments. Essentially, this means it only works on desktop exports (Windows, Mac, Linux). Unless specifically modified, this will not work with mobile and HTML exports. Furthermore, the precompiled version (the one available for download), only works with MV versions 1.5.2 and below. 1.6.0 and above uses a different version of NodeJS. As a result, users need to recompile the source code linked beneath the download in order to use the plugin properly.
請注意,這個(gè)插件只能在NodeJS環(huán)境下運(yùn)行。實(shí)質(zhì)上,這意味著它只能在桌面導(dǎo)出(Windows,Mac,Linux)上運(yùn)行。除非特別修改,否則這不適用于移動設(shè)備和HTML導(dǎo)出。此外,預(yù)編譯版本(可供下載的版本)僅適用于MV版本1.5.2及更低版本。1.6.0及更高版本使用不同版本的NodeJS。因此,用戶需要重新編譯鏈接下載的源代碼才能正確使用插件。
Window.png
For this plugin, you set the color for the text by inputing the color number from your “Window.png” file from the System folder. By default the colors are:
對于這個(gè)插件,您可以通過從System文件夾的“Window.png”文件中輸入顏色編號來為文本設(shè)置顏色。默認(rèn)情況下,顏色是:
0 = White
1 = Light Blue
2 = Light Red
3 = Light Green
4 = Blue-ish White
5 = Light Gray
6 = Light Yello
7 = Gray
8 = Slightly-light Gray
9 = Blue
10 = Red
11 = Green
12 = Lighter Blue
13 = Lighter Gray
14 = Yellow
15 = Black
16 = Foggy Blue
17 = Slightly-light Yellow
18 = Dark Red
19 = Dark Blue
20 = Brown-ish Orange
21 = Orange-ish Yellow
22 = Baby Blue
23 = Sky Blue
24 = Teal Green
25 = Black-ish Pink
26 = Cloudy Blue
27 = Pink
28 = Forest Green
29 = Sea Green
30 = Purple
31 = Light Purple
Parameters
Element ID #
Sets the color of text of Skills or Items that do elemental damage based off of the element they use.
根據(jù)元素使用的元素設(shè)置進(jìn)行元素傷害的技能或物品的文本顏色。
End of Help Section