2019-12-07 14:10:39 -05:00
|
|
|
const log = function(context, obj){
|
2020-04-01 14:44:17 -04:00
|
|
|
Vars.mods.getScripts().log(context, String(obj))
|
2019-12-03 17:16:23 -05:00
|
|
|
}
|
|
|
|
|
2020-05-04 17:57:08 -04:00
|
|
|
const onEvent = function(event, handler){
|
2020-05-04 18:05:47 -04:00
|
|
|
Vars.mods.getScripts().onEvent(event, handler)
|
2020-05-04 17:57:08 -04:00
|
|
|
}
|
|
|
|
|
2020-02-11 17:50:16 -05:00
|
|
|
var scriptName = "base.js"
|
|
|
|
var modName = "none"
|
|
|
|
|
2020-03-05 15:58:10 -05:00
|
|
|
const print = text => log(modName + "/" + scriptName, text);
|
2020-02-11 17:50:16 -05:00
|
|
|
|
2019-12-06 22:24:32 -05:00
|
|
|
const extendContent = function(classType, name, params){
|
2019-12-07 15:41:52 -05:00
|
|
|
return new JavaAdapter(classType, params, name)
|
2019-12-06 21:57:47 -05:00
|
|
|
}
|
2019-12-06 22:24:32 -05:00
|
|
|
|
|
|
|
const extend = function(classType, params){
|
|
|
|
return new JavaAdapter(classType, params)
|
2019-12-08 18:34:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const newEffect = (lifetime, renderer) => new Effects.Effect(lifetime, new Effects.EffectRenderer({render: renderer}))
|
2019-12-29 17:56:10 -05:00
|
|
|
Call = Packages.mindustry.gen.Call
|