Now my question is reduced I think to how do I "inject" a js file into my construct 3 application or project without the need to copy it manually.
have you added this way?
construct.net/en/make-games/manuals/addon-sdk/reference/specifying-dependencies
It's not hard to convert to c3 runtime.
but "plugin.com.chariotsolutions.nfc.plugin" is an very old. its for intel xdk and croswalk.
I don't know if it works with cordova.
Is "set obstacle" and "set specific tile cost" actions broken? I can't get them to work. C3 runtime.
looks normal. It should work. If Magistross checks, he can say something more certain.
Develop games in your browser. Powerful, performant & highly capable.
Is anyone still using this Addon ?
i dont know. but if someone still wants to use it
here c3runtime version.
github.com/erenertugrul/construct-plugins/raw/master/ported_plugins/plugins/magicam/dist/magicam.c3addon
mOOnpunk it was converted today.
Thylacine
github.com/erenertugrul/construct-plugins/raw/master/ported_plugins/behaviors/easystarjs/dist/easystartilemap_1_04.c3addon
use official binary plugin.
but if you still want base64 you can try my plugin.
github.com/erenertugrul/construct-plugins/raw/master/plugins/image_to_base64/c3/dist/image_base64_v1.2.c3addon
example c3p file
oyunkulturu.com/temp/canvas_base64.c3p
your database rules are blocking access to the database.
write
{ "rules": { ".read": true, ".write": true } }
for test.
You can look here for more information.
firebase.google.com/docs/database/security/quickstart
Be sure to create the database "LeaderBoard" key.
open the developer console and check errors.
I have no other idea.
check it id name.
should be your key name same as the id name.
Did you create a leaderboard key?
if not exists create.
and change to your database rules.
{ "rules": { "Leaderboard": { ".read": true, "$uid": { ".read": "$uid === auth.uid", ".write": "$uid === auth.uid" } } } }
the login window for google does not want to open with C3
Add "https://preview.construct.net" to the OAuth redirect domains list in the Firebase console -> Auth section -> Sign in method tab.
and turn on "login with google".
I would definitely buy Construct 3 runtime version, because official plugin is very limited :-/
you can try it alternative to official plugin.
construct.net/en/make-games/addons/244/greengrinds
can't I make the apk directly via construct 3 builder?
You probably can't.
use browser object if you want without plugin.
acquire for
window.powermanagement.acquire()
release for
window.powermanagement.release()
P.S:
you still have to add this plugin to cordova project.
cordova plugin add cordova-plugin-powermanagement