Skip to content

Commit

Permalink
docs: face added
Browse files Browse the repository at this point in the history
  • Loading branch information
npofsi committed Oct 28, 2018
1 parent a5d8b6e commit 7b16d04
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# RMPEScript一个运行于 Forge 上的基于 Mozilla Rhino Engine 的 Minecraft 脚本运行时。> RMPEScript 的目的在于简化 ForgeMod 的开发难度和实现插件的热拔插。下载:[Release](https://github.com/npofsi/RMPEScript/releases)API :[Wiki](https://github.com/npofsi/RMPEScript/wiki)### 支持语言(解析引擎):* javascript(rhino)### 支持类型:* .js* .zip (TODO)## 开源支持* [Rhino](https://github.com/mozilla/rhino) 是一个开源的 JS 引擎可以把为其用 JS 写成的程序转化为 Java 字节码而执行 Java 操作。* [Forge](https://github.com/MinecraftForge/MinecraftForge) 感谢 Forge 的前置让我能方便的实现 mod
# <img src="https://raw.githubusercontent.com/npofsi/RMPEScript/master/docs/icon.png" alt="RMPEScript Face" align="center">一个运行于 Forge 上的基于 Mozilla Rhino Engine 的 Minecraft 脚本运行时。> RMPEScript 的目的在于简化 ForgeMod 的开发难度和实现插件的热拔插。下载:[Release](https://github.com/npofsi/RMPEScript/releases)API :[Wiki](https://github.com/npofsi/RMPEScript/wiki)### 支持语言(解析引擎):* javascript(rhino)### 支持类型:* .js* .zip (TODO)## 开源支持* [Rhino](https://github.com/mozilla/rhino) 是一个开源的 JS 引擎可以把为其用 JS 写成的程序转化为 Java 字节码而执行 Java 操作。* [Forge](https://github.com/MinecraftForge/MinecraftForge) 感谢 Forge 的前置让我能方便的实现 mod
Expand Down
Binary file added docs/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/icon.psd
Binary file not shown.
1 change: 1 addition & 0 deletions examples/CommandBoom.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//这里可以使用 rhino 对于的 interface 的简单写法
var commandCallback=new _RMPE.command.CommandInstance.Callback({
"execute":function(server,sender,args){
//TODO
Level.explode(sender.posX,sender.posY,sender.posZ,10);
}
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package pro.npofsi.rmpescript.include.modpe;

public class Player {

}

0 comments on commit 7b16d04

Please sign in to comment.