c3IDE
c3IDE copied to clipboard
Cant find add on in construct 3
This is my first time to build an addon, I set the types: plugin, category: data and storage, I tried to build and got c3addon, when I tried import in c3 there was no error message, but my plugin did not exist.
Open the dev tools, usually when this happens, this means the addon was added to the addon database correctly, but failed to load, either in C3 as a whole, or in the project. This can be due to many different reasons, all handled silently by C3. Most of the time though, C3 does display a small error message in the console.
So look through the editor's console for errors, and look at the ones that might concern your addon.
Also, when editing the addon, it's always better to use the developer mode https://www.construct.net/en/make-games/manuals/addon-sdk/guide/using-developer-mode
This makes reloading and making changes to the addon a LOT easier, and it also makes finding errors less of a problem.
Open the dev tools, usually when this happens, this means the addon was added to the addon database correctly, but failed to load, either in C3 as a whole, or in the project. This can be due to many different reasons, all handled silently by C3. Most of the time though, C3 does display a small error message in the console.
So look through the editor's console for errors, and look at the ones that might concern your addon.
Also, when editing the addon, it's always better to use the developer mode https://www.construct.net/en/make-games/manuals/addon-sdk/guide/using-developer-mode
This makes reloading and making changes to the addon a LOT easier, and it also makes finding errors less of a problem.
I tried to create a new addon again with the default setting (blank) and it can be seen in the construct, when I add an expression (only 1 expression without setting it) it results in the addon not being visible in the construct. Is there a video tutorial related to c3IDE?
can you show me that expression? I'm pretty sure you must have made some sort of syntax error
Sadly there is no tutorial that I know of at the moment.
can you show me that expression? I'm pretty sure you must have made some sort of syntax error
Sadly there is no tutorial that I know of at the moment.
this is my expression https://ibb.co/2dVGcY1 , i just try to return "a"
the link doesn't lead to anything
the link doesn't lead to anything
sorry.. now the link can be opened, before i use link function from github. so it doesnt lead to anything
Oh I think I know.
One of these buttons leads to a page where you can change the language for params and categories. Hit the generate button at the bottom of the screen.
The addon fails to load because it lacks these values I think
Oh I think I know.
One of these buttons leads to a page where you can change the language for params and categories. Hit the generate button at the bottom of the screen.
The addon fails to load because it lacks these values I think
hehe.. I didn't know that there was a generate button under there, it was covered by the windows menubar, now my plugin is visible in the construct.
Thank you for this solutions
is there a thread that discusses the 3rd party? because I'm trying to import 3rd party into my plugin and then add dependency on plugin, but I don't know how to use it (I tried to use it like js in general), but it results in js undefined
For 3rd party JS import, it depends on many things, most of which are defined in the SDK docs.
For how you actually do that in C3IDE, in the addon.json page, you have a 3rd party files
This is where you add any extra JS file.
You can then click Generate Plugin dependency here
To add the code that adds it to the addon. Make sure the code is in line with the docs, this is mostly to help with the process and isn't 100% correct all the time. You'll need to read the docs carefully.