Hi,
I'm developing a plugin for C3, so far so good, I'll like to add the "object" property to it but I can't figure out the parameters it needs.
This is what is I have:
SDK.Lang.PushContext(".properties"); this._info.SetProperties([ new SDK.PluginProperty("combo", "test", {initialValue:"true", items:["false","true"]}), new SDK.PluginProperty("object") ]);
The "combo" property works good, but what am I missing for the "object" property? I have read construct.net/en/make-games/manuals/addon-sdk/reference/pluginproperty
I´ll appreciate any help.
Develop games in your browser. Powerful, performant & highly capable.
You just need to provide the required id parameter, e.g. new SDK.PluginProperty("object", "my-object-param-id").
id
new SDK.PluginProperty("object", "my-object-param-id")