Space Engineers
EasyAPI
กำลังแสดง 21-30 จาก 58 รายการ
< 1  2  3  4  5  6 >
อัปเดต: 23 ก.พ. 2016 @ 11: 38pm

Minified EasyAPI library code! It now only takes up 30k characters instead of 54k.

Also changed the EasyCommands command to "EasyCommand" instead of "$"

อัปเดต: 22 ก.พ. 2016 @ 8: 27pm

Added EasyCommands class which allows you to do simple commands with no programming by using arguments passed to the Programming Block.

"EasyCommand" is a special command argument which tells the programming block to execute an easyapi command. Documentation coming soon.

Some Examples:
"EasyCommand Blocks Off" - will shut off all blocks in your ship (including the programming block)
"EasyCommand Blocks ApplyAction Open" - toggle all doors open/close on your ship
'EasyCommand Blocks WritePublicText "Hello World!"' - Write "Hello World!" to all LCDs, and text terminals in public area.
"EasyCommand Blocks NamedLike Front OfTypeLike Door Open" open all doors with "Front" in their name

อัปเดต: 21 ก.พ. 2016 @ 3: 21pm

Added OnCommand event function which acts like a main c function by parsing the command into argc (argument counts) and argv (arguments). Note that argv[0] is the command just like in a CLI C script.

If you have the following code and run a programming block with the arguments:

echo this "is something" new
then it will output:
this is something new

Code:
OnCommand("echo", delegate(int argc, string[] argv) { if(argc > 1) { for(int n = 1; n < argc; n++) Echo(argv[n]); } });

อัปเดต: 21 ก.พ. 2016 @ 3: 19pm

อัปเดต: 21 ก.พ. 2016 @ 2: 34pm

อัปเดต: 11 ธ.ค. 2015 @ 11: 45pm

Fix for generics bug. EasyEvent class is no longer generic.

อัปเดต: 17 ก.ค. 2015 @ 10: 03pm

Merged from jkeywo on GitHub:

"Fixed On(string, Action) to work reliably."

อัปเดต: 16 ก.ค. 2015 @ 9: 35pm

The latest space engineers update broke EasyAPI. This update fixed it.

อัปเดต: 16 พ.ค. 2015 @ 11: 16am

อัปเดต: 16 พ.ค. 2015 @ 12: 20am