basically, I have gone through the SDK document and there is no example code for sdk.
I am stuck at:
Acts.prototype.custom_plugin = function (text_object_name)
{
};
with no idea how to directly access the core code of construct 2.
Namely the object array where they are store.
Anything like:
this.object.(text_object_name).settext("Something");
example would be welcome!
In php it would be like:
function something($object_name)
{
$$object_name = "something";
}
Any help appreciated!