├── plugins ├── notifier │ ├── c3 │ │ ├── dist │ │ │ ├── please download last version! │ │ │ ├── notifier.c3addon │ │ │ ├── notifier_v1.1.c3addon │ │ │ └── notifier_v1.2.c3addon │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ ├── expressions.js │ │ │ │ ├── plugin.js │ │ │ │ └── type.js │ │ │ └── type.js │ │ └── example c3p │ │ │ └── notifier.c3p │ └── c2 │ │ └── source │ │ └── source.zip ├── image_to_base64 │ ├── c3 │ │ ├── dist │ │ │ ├── please download last version! │ │ │ ├── image_base64_v1.c3addon │ │ │ ├── image_base64_v1.1.c3addon │ │ │ └── image_base64_v1.2.c3addon │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ ├── expressions.js │ │ │ │ ├── plugin.js │ │ │ │ └── type.js │ │ │ └── type.js │ │ └── example c3p │ │ │ ├── base_convert.c3p │ │ │ ├── canvas_base64.c3p │ │ │ └── file_convert.c3p │ └── c2 │ │ ├── example │ │ └── base_64.capx │ │ ├── source │ │ ├── PluginIcon.ico │ │ └── common.js │ │ └── dist │ │ └── image_base64_v1.2.c2addon ├── imgur_uploader │ ├── c2 │ │ ├── dist │ │ │ ├── please download last version! │ │ │ ├── imgur_uploader_v1.c2addon │ │ │ └── imgur_uploader_v1.1.c2addon │ │ ├── source │ │ │ ├── PluginIcon.ico │ │ │ └── common.js │ │ └── example capx │ │ │ └── imgur.capx │ └── c3 │ │ ├── dist │ │ ├── please download last version! │ │ ├── imgur_uploader_v1.c3addon │ │ ├── imgur_uploader_v1.1.c3addon │ │ └── imgur_uploader_v1.2.c3addon │ │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── plugin.js │ │ │ ├── expressions.js │ │ │ ├── type.js │ │ │ └── conditions.js │ │ └── type.js │ │ └── example capx │ │ ├── imgur.c3p │ │ └── imgur.capx ├── jszip │ ├── c3 │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── type.js │ │ │ └── c3runtime │ │ │ │ └── type.js │ │ ├── example │ │ │ └── jszip.capx │ │ └── dist │ │ │ └── jszip_v1.c3addon │ └── c2 │ │ ├── example │ │ └── jszip.capx │ │ ├── dist │ │ └── jszip_v1.c2addon │ │ └── source │ │ ├── PluginIcon.ico │ │ └── common.js ├── ios_requestreview │ ├── c3 │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── c3runtime │ │ │ │ ├── expressions.js │ │ │ │ ├── plugin.js │ │ │ │ ├── conditions.js │ │ │ │ └── type.js │ │ │ └── type.js │ │ └── dist │ │ │ └── ios_requestreview.c3addon │ └── c2 │ │ ├── source │ │ ├── PluginIcon.ico │ │ └── common.js │ │ └── dist │ │ └── ios_requestreview.c2addon ├── discord_rich_presence │ ├── c2 │ │ ├── dist │ │ │ ├── demo.capx │ │ │ ├── node_modules.zip │ │ │ ├── discord_richpresence.c2addon │ │ │ ├── discord_richpresence_c2.zip │ │ │ └── discord_richpresence_v1.2.c2addon │ │ └── source │ │ │ └── files │ │ │ └── discord │ │ │ ├── common.js │ │ │ └── PluginIcon.ico │ └── c3 │ │ ├── dist │ │ ├── demo.capx │ │ ├── node_modules.zip │ │ ├── discord_richpresence.c3addon │ │ ├── discord_richpresence_c3.zip │ │ └── discord_richpresence_v1.1.c3addon │ │ └── source │ │ ├── icon.png │ │ ├── c3runtime │ │ ├── conditions.js │ │ ├── plugin.js │ │ └── type.js │ │ └── type.js └── firebase_remote_config │ ├── c3 │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── plugin.js │ │ │ └── type.js │ │ └── type.js │ ├── dist │ │ └── firebase_remote_config.c3addon │ └── sample c3p │ │ └── firebase_remote_config.c3p │ └── c2 │ ├── source │ ├── PluginIcon.ico │ └── common.js │ └── dist │ └── firebase_remote_config.c2addon └── ported_plugins ├── plugins ├── rex_tmx │ ├── rex_tmx_JSON_parser │ │ ├── source │ │ │ ├── aces.json │ │ │ ├── c3runtime │ │ │ │ ├── actions.js │ │ │ │ ├── conditions.js │ │ │ │ └── expressions.js │ │ │ ├── icon.png │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_tmx_JSON_parser.c3addon │ ├── rex_tmx_XML_parser │ │ ├── source │ │ │ ├── aces.json │ │ │ ├── icon.png │ │ │ ├── c3runtime │ │ │ │ ├── expressions.js │ │ │ │ ├── conditions.js │ │ │ │ └── actions.js │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_tmx_XML_parser.c3addon │ ├── rex_tmx_pack.zip │ ├── samples │ │ ├── tmx 2 tilemap.capx │ │ ├── tmx importer v2 - duration.capx │ │ ├── tmx importer v2 - basic (JSON parser).capx │ │ └── tmx importer v2 - for each tile at LXY.capx │ └── rex_tmx_importer_v2 │ │ ├── source │ │ ├── icon.png │ │ └── type.js │ │ └── dist │ │ └── rex_tmx_importer_v2.c3addon ├── rex_firebase_pack │ ├── plugins │ │ ├── rex_firebase_api │ │ │ ├── source │ │ │ │ ├── aces.json │ │ │ │ ├── c3runtime │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── conditions.js │ │ │ │ │ └── expressions.js │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_api.c3addon │ │ ├── rex_firebase_apiv3 │ │ │ ├── source │ │ │ │ ├── c3runtime │ │ │ │ │ ├── conditions.js │ │ │ │ │ ├── expressions.js │ │ │ │ │ └── actions.js │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_apiv3.c3addon │ │ ├── rex_firebase_query │ │ │ ├── source │ │ │ │ ├── c3runtime │ │ │ │ │ ├── conditions.js │ │ │ │ │ └── expressions.js │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_query.c3addon │ │ ├── rex_firebase_storage │ │ │ ├── source │ │ │ │ ├── cors.json │ │ │ │ └── icon.png │ │ │ ├── firebase_cors_error.txt │ │ │ └── dist │ │ │ │ └── rex_firebase_storage.c3addon │ │ ├── rex_firebase_userlist │ │ │ ├── source │ │ │ │ ├── c3runtime │ │ │ │ │ └── expressions.js │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_userlist.c3addon │ │ ├── rex_firebase │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase.c3addon │ │ ├── rex_firebase_rooms │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_rooms.c3addon │ │ ├── rex_firebase_timer │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_timer.c3addon │ │ ├── rex_firebase_token │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ ├── c3runtime │ │ │ │ │ └── expressions.js │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_token.c3addon │ │ ├── rex_firebase_counter │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_counter.c3addon │ │ ├── rex_firebase_curTime │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ ├── c3runtime │ │ │ │ │ ├── conditions.js │ │ │ │ │ └── expressions.js │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_curTime.c3addon │ │ ├── rex_firebase_geofire │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ ├── c3runtime │ │ │ │ │ └── plugin.js │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_geofire.c3addon │ │ ├── rex_firebase_itembook │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── type.js │ │ │ └── dist │ │ │ │ └── rex_firebase_itembook.c3addon │ │ ├── rex_firebase_message │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── c3runtime │ │ │ │ │ ├── conditions.js │ │ │ │ │ └── plugin.js │ │ │ └── dist │ │ │ │ └── rex_firebase_message.c3addon │ │ ├── rex_firebase_savedata │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_savedata.c3addon │ │ ├── rex_firebase_itemfilter │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_itemfilter.c3addon │ │ ├── rex_firebase_itemtable │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_itemtable.c3addon │ │ ├── rex_firebase_syncqueue │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── c3runtime │ │ │ │ │ ├── expressions.js │ │ │ │ │ └── conditions.js │ │ │ └── dist │ │ │ │ └── rex_firebase_syncqueue.c3addon │ │ ├── rex_firebase_userid2id │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_userid2id.c3addon │ │ ├── rex_firebase_itemmonitor │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_itemmonitor.c3addon │ │ ├── rex_firebase_leaderboard │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_leaderboard.c3addon │ │ ├── rex_firebase_simplemessage │ │ │ ├── source │ │ │ │ ├── icon.png │ │ │ │ └── c3runtime │ │ │ │ │ └── conditions.js │ │ │ └── dist │ │ │ │ └── rex_firebase_simplemessage.c3addon │ │ ├── rex_firebase_singleLogin │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_singleLogin.c3addon │ │ ├── rex_firebase_transaction │ │ │ ├── source │ │ │ │ └── icon.png │ │ │ └── dist │ │ │ │ └── rex_firebase_transaction.c3addon │ │ └── rex_firebase_authentication │ │ │ ├── source │ │ │ └── icon.png │ │ │ └── dist │ │ │ └── rex_firebase_authentication.c3addon │ ├── firebase_cors_error.txt │ └── sample_capx │ │ ├── storage │ │ ├── firebase_cors_error.txt │ │ ├── storage v3 - dataURI.capx │ │ ├── storage v3 - sprite.capx │ │ ├── storage v3 - file chooser.capx │ │ ├── storage v3 - gif (objectURL).capx │ │ └── storage v3 - dataURI + metadata.capx │ │ ├── counter │ │ ├── counter v3.capx │ │ └── custom counter v3.capx │ │ ├── leaderboard │ │ ├── post-get.capx │ │ ├── add to score.capx │ │ ├── auto update v3.capx │ │ ├── manual update v3.capx │ │ ├── post if greater.capx │ │ └── test - auto update.capx │ │ ├── rooms │ │ ├── rooms - basic.capx │ │ └── rooms - random.capx │ │ ├── timer │ │ ├── off game time.capx │ │ ├── firebase timer v3.capx │ │ ├── off game time v3.capx │ │ └── firebase timer - count down.capx │ │ ├── geofire │ │ └── geofire - basic.capx │ │ ├── item table │ │ ├── presence v3.capx │ │ ├── item table v3.capx │ │ └── itemtable v3 - foreach item, foreach key.capx │ │ ├── query │ │ └── orderByValue v3.capx │ │ ├── save slot │ │ ├── saveslot v3.capx │ │ ├── saveslot v3 - auth.capx │ │ └── save user variables.capx │ │ ├── token │ │ └── token v3 - master.capx │ │ ├── curTime │ │ └── current timestamp.capx │ │ ├── single login │ │ └── single login v3.capx │ │ ├── Simple message │ │ └── Simple chat v3.capx │ │ ├── authentication │ │ ├── auth -facebook.capx │ │ ├── auth - anonymous.capx │ │ ├── email-password v3.capx │ │ ├── auth - link to facebook.capx │ │ ├── firebase- auth - logout.capx │ │ ├── send verification email.capx │ │ ├── auth -facebook or google.capx │ │ ├── send password reset email.capx │ │ ├── auth - link to email@password.capx │ │ └── auth -facebook - access token.capx │ │ ├── firebase │ │ ├── firebase v3 - online.capx │ │ ├── firebase v3 - set value.capx │ │ ├── firebase v3 - message append.capx │ │ ├── firebase v3 - my connection state.capx │ │ └── firebase v3 - server time offset.capx │ │ ├── item book │ │ ├── item book - presence.capx │ │ ├── item book - set JSON.capx │ │ ├── item book - pick random item.capx │ │ ├── item book - requests queue.capx │ │ ├── item book - table to taffydb.capx │ │ ├── item book - prepare items in tree or list.capx │ │ └── item book - update, load all, load by cond.capx │ │ ├── item monitor │ │ ├── monitor all items.capx │ │ └── monitor query items.capx │ │ ├── UserID2ID │ │ ├── UserID2ID v3 - manual ID.capx │ │ └── UserID2ID v3 - random ID.capx │ │ └── item filter │ │ └── item filter v3 - condition.capx ├── call_js │ ├── source │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ ├── expressions.js │ │ │ ├── plugin.js │ │ │ ├── actions.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ └── dist │ │ └── call_js.c3addon ├── ExtraExp │ ├── source │ │ ├── c3runtime │ │ │ ├── actions.js │ │ │ ├── conditions.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ ├── dist │ │ └── ExtraExp.c3addon │ └── example │ │ └── Example (Freaking Letters).capx ├── rex_ann │ ├── source │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ ├── example │ │ ├── xor.c3p │ │ └── ANN - XOR_dict inout.capx │ └── dist │ │ └── rex_ann.c3addon ├── rex_date │ ├── source │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ ├── plugin.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ └── dist │ │ └── rex_date.c3addon ├── tr_clockparser │ ├── source │ │ ├── c3runtime │ │ │ ├── actions.js │ │ │ ├── conditions.js │ │ │ ├── plugin.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ ├── dist │ │ └── tr_clockparser.c3addon │ └── example │ │ └── TR_ClockParser.capx ├── cbhash │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ └── type.js │ │ └── type.js │ ├── example │ │ └── CBHash Demo Tech.c3p │ ├── dist │ │ └── cbhash_release_r70_1.0.c3addon │ └── README.md ├── jspdf │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ ├── expressions.js │ │ │ ├── plugin.js │ │ │ └── type.js │ │ └── type.js │ ├── dist │ │ └── jspdf.c3addon │ └── example │ │ └── test-pdf.c3p ├── magicam │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── magicam.c3addon │ └── example │ │ └── magicam.c3p ├── mkarray │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── plugin.js │ │ │ └── type.js │ │ └── type.js │ └── dist │ │ └── mkarray.c3addon ├── rex_csv │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── rex_csv.c3addon │ └── example │ │ ├── CSV_eval.capx │ │ ├── csv - add to.capx │ │ ├── for each row.capx │ │ ├── csc - sort col.capx │ │ ├── csv read,write.capx │ │ ├── csv - multipage.capx │ │ ├── csv - table to csv.capx │ │ ├── csv - eval cell value.capx │ │ ├── csv - dump in csv string.capx │ │ ├── csv - previous, next col.capx │ │ └── csv - number index col,row.capx ├── jcw_trace │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ └── conditions.js │ │ └── type.js │ ├── dist │ │ └── jcw_trace.c3addon │ └── example │ │ └── trace_test.c3p ├── mouselock │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ └── dist │ │ └── mouselock.c3addon ├── rex_gfsm │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ └── type.js │ │ └── type.js │ ├── dist │ │ └── rex_gfsm.c3addon │ └── example │ │ └── fsm plugin.capx ├── rex_hash │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── rex_hash.c3addon │ └── example │ │ ├── hashtable_copy.capx │ │ ├── hashtable_test1.capx │ │ ├── hash table - sort.capx │ │ ├── hashtable_pickkeys.capx │ │ ├── hash table - add to.capx │ │ ├── hash table - for each.capx │ │ ├── hash table - set JSON.capx │ │ ├── hash table - shuffle.capx │ │ ├── hash table - load, read.capx │ │ ├── hash table - push JSON.capx │ │ ├── hashtable - sort value.capx │ │ ├── hash table - iterate loop.capx │ │ ├── hashtable_pick random key.capx │ │ └── hash table - for each - CurValue.capx ├── rex_board_pack │ ├── rex_board_hexTx │ │ ├── source │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ └── type.js │ │ │ ├── icon.png │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_board_hexTx.c3addon │ ├── rex_board_cubeTx │ │ ├── source │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ ├── expressions.js │ │ │ │ └── plugin.js │ │ │ ├── icon.png │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_board_cubeTx.c3addon │ ├── rex_board_hexShapeMap │ │ ├── source │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ └── expressions.js │ │ │ ├── icon.png │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_board_hexShapeMap.c3addon │ ├── rex_board │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── type.js │ │ │ └── c3runtime │ │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_board.c3addon │ ├── rex_board_squareTx │ │ ├── source │ │ │ ├── icon.png │ │ │ ├── c3runtime │ │ │ │ └── conditions.js │ │ │ └── type.js │ │ └── dist │ │ │ └── rex_board_squareTx.c3addon │ └── rex_board_projectionTx │ │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ └── conditions.js │ │ └── type.js │ │ └── dist │ │ └── rex_board_projectionTx.c3addon ├── rex_taffyd │ ├── source │ │ ├── icon.png │ │ └── type.js │ └── dist │ │ └── rex_taffyd.c3addon ├── time_manager │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── timemanager.c3addon │ └── example │ │ └── TimeManagerPluginExampleFile_1_08.capx ├── rex_csv2array │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ └── dist │ │ └── rex_csv2array.c3addon ├── rex_ginstgroup │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ └── dist │ │ └── rex_ginstgroup.c3addon ├── rex_time_awayL │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── plugin.js │ │ │ └── type.js │ │ └── type.js │ ├── examples │ │ ├── time away L.capx │ │ ├── time away L - remove.capx │ │ ├── time awayL - 2 timer.capx │ │ └── time away L - pause resume.capx │ └── dist │ │ └── rex_time_awayL.c3addon ├── sweet alert 2 │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ └── plugin.js │ │ └── type.js │ ├── dist │ │ └── sweetalert2.c3addon │ └── example c3p │ │ └── sweetalert2.c3p ├── trblsm_storage │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── TRBLSM_storage.c3addon │ └── example │ │ └── StorageExample.capx ├── rex_json_builder │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── plugin.js │ │ │ ├── conditions.js │ │ │ └── type.js │ │ └── type.js │ ├── example │ │ ├── json builder.capx │ │ └── json builder - error.capx │ └── dist │ │ └── rex_json_builder.c3addon ├── rex_slg_movement │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ ├── conditions.js │ │ │ └── type.js │ └── dist │ │ └── rex_slg_movement.c3addon ├── simple_qr_scanner │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── plugin.js │ │ │ ├── conditions.js │ │ │ └── type.js │ │ └── type.js │ └── dist │ │ └── simpleqrscanner.c3addon ├── rex_csv2dictionary │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ └── dist │ │ └── rex_csv2dictionary.c3addon └── scorm_c3_plugin │ ├── dist │ └── scorm_c3runtime.c3addon │ └── source │ ├── type.js │ └── c3runtime │ └── type.js ├── behaviors ├── lg_shake │ ├── c3 │ │ ├── source │ │ │ ├── c3runtime │ │ │ │ ├── conditions.js │ │ │ │ ├── expressions.js │ │ │ │ └── type.js │ │ │ ├── icon.png │ │ │ └── type.js │ │ └── dist │ │ │ └── lg_shake.c3addon │ └── c2 │ │ ├── dist │ │ └── lg_shake.c2addon │ │ └── source │ │ ├── PluginIcon.ico │ │ └── common.js ├── rex_anchor2 │ ├── source │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── conditions.js │ │ │ ├── behavior.js │ │ │ └── type.js │ │ ├── icon.png │ │ └── type.js │ ├── dist │ │ └── rex_anchor2.c3addon │ └── example │ │ ├── anchor2 - center.capx │ │ └── anchor2 - right center.capx ├── circle │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── circle.c3addon │ └── example_c3p │ │ └── circle_examples.c3p ├── rex_anchor_mode │ ├── source │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── conditions.js │ │ │ └── behavior.js │ │ ├── icon.png │ │ └── type.js │ ├── example │ │ └── anchor mod.capx │ └── dist │ │ └── rex_anchor_mode.c3addon ├── rex_fsm │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ └── type.js │ │ └── type.js │ ├── dist │ │ └── rex_fsm.c3addon │ └── example │ │ └── fsm behavior.capx ├── easystarjs │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── example_c3p │ │ ├── easystarjsdemo.c3p │ │ └── testeasystar.c3p │ └── dist │ │ └── easystartilemap_1_04.c3addon ├── pin_plus │ ├── dist │ │ └── pin+.c3addon │ └── source │ │ ├── icon.png │ │ ├── c3runtime │ │ ├── conditions.js │ │ ├── behavior.js │ │ └── type.js │ │ └── type.js ├── rex_bhash │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── rex_bHash.c3addon │ └── example │ │ └── hash table behavior - basic.capx ├── rex_cameraFollower │ ├── source │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ └── expressions.js │ │ ├── icon.png │ │ └── type.js │ ├── example │ │ └── camera follower.capx │ └── dist │ │ └── rex_camerafollower.c3addon ├── rex_chess │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── behavior.js │ │ │ └── type.js │ │ └── type.js │ └── dist │ │ └── rex_chess.c3addon ├── rex_light │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ └── conditions.js │ │ └── type.js │ ├── dist │ │ └── rex_light.c3addon │ └── example c3p │ │ ├── laser demo.c3p │ │ └── laser bounce.c3p ├── rex_maxmin │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── example │ │ └── max min.capx │ └── dist │ │ └── rex_maxmin.c3addon ├── rex_moveto │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ └── dist │ │ └── rex_moveto.c3addon ├── rex_zigzag │ ├── source │ │ ├── icon.png │ │ ├── type.js │ │ └── c3runtime │ │ │ └── type.js │ ├── dist │ │ └── rex_zigzag.c3addon │ └── example_capx │ │ ├── zigzag - basic.capx │ │ ├── zigzag - platformer.capx │ │ └── zigzag - embed speed.capx ├── rex_rotateto │ ├── source │ │ ├── icon.png │ │ └── type.js │ └── dist │ │ └── rex_rotate.c3addon ├── rex_shakemod │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ ├── behavior.js │ │ │ └── type.js │ │ └── type.js │ ├── example │ │ ├── shake.capx │ │ └── shake + sine.capx │ └── dist │ │ └── rex_shakemod.c3addon ├── rex_anglelock │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── conditions.js │ │ │ ├── actions.js │ │ │ └── type.js │ │ └── type.js │ ├── dist │ │ └── rex_anglelock.c3addon │ └── example │ │ └── test_anglelock.capx ├── rex_betCounter │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── actions.js │ │ │ └── expressions.js │ │ └── type.js │ ├── example │ │ └── beat counter.capx │ └── dist │ │ └── rex_betCounter.c3addon ├── rex_grid_move │ ├── source │ │ ├── icon.png │ │ └── type.js │ └── dist │ │ └── rex_grid_move.c3addon ├── rex_pushoutsolid │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── expressions.js │ │ │ ├── conditions.js │ │ │ └── behavior.js │ │ └── type.js │ ├── dist │ │ └── rex_pushoutsolid.c3addon │ └── example │ │ └── pushOut - manually.capx ├── rex_pin2imagepoint │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ ├── expressions.js │ │ │ └── behavior.js │ │ └── type.js │ └── dist │ │ └── rex_pin2imagepoint.c3addon ├── rex_platform_moveto │ ├── source │ │ ├── icon.png │ │ ├── c3runtime │ │ │ ├── conditions.js │ │ │ └── expressions.js │ │ └── type.js │ ├── example │ │ └── platfrom_MoveTo.capx │ └── dist │ │ └── rex_platform_moveto.c3addon └── lunarray_litetween │ ├── dist │ └── LiteTween v.1.7_c3runtime.c3addon │ └── source │ └── type.js └── lunarray_litetween ├── dist └── LiteTween v.1.7_c3runtime.c3addon └── source └── type.js /plugins/notifier/c3/dist/please download last version!: -------------------------------------------------------------------------------- 1 | please download last version! -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/aces.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/aces.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/dist/please download last version!: -------------------------------------------------------------------------------- 1 | please download last version! -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/dist/please download last version!: -------------------------------------------------------------------------------- 1 | please download last version! -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/dist/please download last version!: -------------------------------------------------------------------------------- 1 | please download last version! -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/aces.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /plugins/jszip/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c3/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.cjs.Cnds = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /plugins/jszip/c2/example/jszip.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c2/example/jszip.capx -------------------------------------------------------------------------------- /plugins/jszip/c3/example/jszip.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c3/example/jszip.capx -------------------------------------------------------------------------------- /plugins/notifier/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c3/source/icon.png -------------------------------------------------------------------------------- /plugins/jszip/c2/dist/jszip_v1.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c2/dist/jszip_v1.c2addon -------------------------------------------------------------------------------- /plugins/jszip/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /plugins/jszip/c3/dist/jszip_v1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/jszip/c3/dist/jszip_v1.c3addon -------------------------------------------------------------------------------- /plugins/notifier/c2/source/source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c2/source/source.zip -------------------------------------------------------------------------------- /plugins/notifier/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_notifier.Cnds = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /plugins/notifier/c3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_notifier.Exps = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.ExtraExps.Acts = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_ANN.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Date.Cnds = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/source/icon.png -------------------------------------------------------------------------------- /plugins/notifier/c3/dist/notifier.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c3/dist/notifier.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.ExtraExps.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.lgshake.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.lgshake.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.TR_ClockParser.Acts = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.TR_ClockParser.Cnds = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/ios_requestreview/c3/source/icon.png -------------------------------------------------------------------------------- /plugins/notifier/c3/dist/notifier_v1.1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c3/dist/notifier_v1.1.c3addon -------------------------------------------------------------------------------- /plugins/notifier/c3/dist/notifier_v1.2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c3/dist/notifier_v1.2.c3addon -------------------------------------------------------------------------------- /plugins/notifier/c3/example c3p/notifier.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/notifier/c3/example c3p/notifier.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor2.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/call_js/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/cbhash/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jspdf/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/magicam/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/magicam/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/mkarray/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/mkarray/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/example/xor.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ann/example/xor.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ann/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/source/icon.png -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/dist/demo.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/dist/demo.capx -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/dist/demo.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/dist/demo.capx -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/source/icon.png -------------------------------------------------------------------------------- /plugins/image_to_base64/c2/example/base_64.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c2/example/base_64.capx -------------------------------------------------------------------------------- /plugins/image_to_base64/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/example capx/imgur.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/example capx/imgur.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/circle/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/circle/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor_mod.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_fsm/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/ExtraExp/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/jcw_trace/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jcw_trace/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/dist/jspdf.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jspdf/dist/jspdf.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/mouselock/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/mouselock/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_date/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_gfsm/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_pack.zip -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/firebase_remote_config/c3/source/icon.png -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/example capx/imgur.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c2/example capx/imgur.capx -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/example capx/imgur.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/example capx/imgur.capx -------------------------------------------------------------------------------- /plugins/ios_requestreview/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/ios_requestreview/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /plugins/jszip/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/circle/dist/circle.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/circle/dist/circle.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/easystarjs/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/dist/pin+.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/pin_plus/dist/pin+.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/pin_plus/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_bhash/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_bhash/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_CameraFollower.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_chess/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_chess/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_light/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_maxmin/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_maxmin/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_moveto/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_moveto/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_zigzag/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/dist/call_js.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/call_js/dist/call_js.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/example/test-pdf.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jspdf/example/test-pdf.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/magicam/dist/magicam.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/magicam/dist/magicam.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/magicam/example/magicam.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/magicam/example/magicam.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/mkarray/dist/mkarray.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/mkarray/dist/mkarray.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/dist/rex_ann.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ann/dist/rex_ann.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexTx/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGHexTx.Cnds = 5 | { 6 | }; 7 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/dist/rex_csv.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/dist/rex_csv.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_taffyd/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_taffyd/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/time_manager/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/time_manager/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/lg_shake/c3/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor2/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_CameraFollower.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/dist/rex_fsm.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_fsm/dist/rex_fsm.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_rotateto/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_rotateto/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_shakemod/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/dist/ExtraExp.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/ExtraExp/dist/ExtraExp.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGCubeTx.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGCubeTx.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/CSV_eval.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/CSV_eval.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2array/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv2array/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/dist/rex_date.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_date/dist/rex_date.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/dist/rex_gfsm.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_gfsm/dist/rex_gfsm.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ginstgroup/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ginstgroup/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/dist/rex_hash.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/dist/rex_hash.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_JSON_parser.Acts = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/sweet alert 2/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/sweet alert 2/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/tr_clockparser/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/trblsm_storage/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/trblsm_storage/source/icon.png -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/dist/node_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/dist/node_modules.zip -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/dist/node_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/dist/node_modules.zip -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/firebase_remote_config/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /plugins/image_to_base64/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/dist/image_base64_v1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/dist/image_base64_v1.c3addon -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/example c3p/base_convert.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/example c3p/base_convert.c3p -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/example c3p/canvas_base64.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/example c3p/canvas_base64.c3p -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/example c3p/file_convert.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/example c3p/file_convert.c3p -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/dist/imgur_uploader_v1.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c2/dist/imgur_uploader_v1.c2addon -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/dist/imgur_uploader_v1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/dist/imgur_uploader_v1.c3addon -------------------------------------------------------------------------------- /plugins/ios_requestreview/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor_mode/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anglelock/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_betCounter/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_grid_move/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_grid_move/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_maxmin/example/max min.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_maxmin/example/max min.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/example/shake.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_shakemod/example/shake.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/jcw_trace/dist/jcw_trace.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jcw_trace/dist/jcw_trace.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/jcw_trace/example/trace_test.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/jcw_trace/example/trace_test.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/mouselock/dist/mouselock.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/mouselock/dist/mouselock.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - add to.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - add to.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/for each row.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/for each row.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/firebase_cors_error.txt: -------------------------------------------------------------------------------- 1 | https://stackoverflow.com/questions/37760695/firebase-storage-and-access-control-allow-origin/37765371#37765371 -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/example/fsm plugin.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_gfsm/example/fsm plugin.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_json_builder/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_slg_movement/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_slg_movement/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_JSON_parser.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_JSON_parser.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/simple_qr_scanner/source/icon.png -------------------------------------------------------------------------------- /plugins/image_to_base64/c2/dist/image_base64_v1.2.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c2/dist/image_base64_v1.2.c2addon -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/dist/image_base64_v1.1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/dist/image_base64_v1.1.c3addon -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/dist/image_base64_v1.2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/image_to_base64/c3/dist/image_base64_v1.2.c3addon -------------------------------------------------------------------------------- /plugins/imgur_uploader/c2/dist/imgur_uploader_v1.1.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c2/dist/imgur_uploader_v1.1.c2addon -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/dist/imgur_uploader_v1.1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/dist/imgur_uploader_v1.1.c3addon -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/dist/imgur_uploader_v1.2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/imgur_uploader/c3/dist/imgur_uploader_v1.2.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c2/dist/lg_shake.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/lg_shake/c2/dist/lg_shake.c2addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c2/source/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/lg_shake/c2/source/PluginIcon.ico -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/dist/lg_shake.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/lg_shake/c3/dist/lg_shake.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_bhash/dist/rex_bHash.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_bhash/dist/rex_bHash.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_chess/dist/rex_chess.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_chess/dist/rex_chess.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/example/fsm behavior.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_fsm/example/fsm behavior.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/dist/rex_light.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_light/dist/rex_light.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_pushoutsolid/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/example/CBHash Demo Tech.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/cbhash/example/CBHash Demo Tech.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_hexShapeMap.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_hexShapeMap.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csc - sort col.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csc - sort col.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv read,write.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv read,write.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2dictionary/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv2dictionary/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPI.Acts = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_taffyd/dist/rex_taffyd.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_taffyd/dist/rex_taffyd.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/samples/tmx 2 tilemap.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/samples/tmx 2 tilemap.capx -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /plugins/ios_requestreview/c2/dist/ios_requestreview.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/ios_requestreview/c2/dist/ios_requestreview.c2addon -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/dist/ios_requestreview.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/ios_requestreview/c3/dist/ios_requestreview.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c2/source/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/dist/rex_anchor2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor2/dist/rex_anchor2.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_cameraFollower/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/example c3p/laser demo.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_light/example c3p/laser demo.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_maxmin/dist/rex_maxmin.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_maxmin/dist/rex_maxmin.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_moveto/dist/rex_moveto.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_moveto/dist/rex_moveto.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_pin2imagepoint/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_platform_moveto/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_rotateto/dist/rex_rotate.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_rotateto/dist/rex_rotate.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/dist/rex_zigzag.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_zigzag/dist/rex_zigzag.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - multipage.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - multipage.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPI.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPI.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hashtable_copy.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hashtable_copy.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hashtable_test1.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hashtable_test1.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/sweet alert 2/dist/sweetalert2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/sweet alert 2/dist/sweetalert2.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/time_manager/dist/timemanager.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/time_manager/dist/timemanager.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/circle/example_c3p/circle_examples.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/circle/example_c3p/circle_examples.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/example c3p/laser bounce.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_light/example c3p/laser bounce.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/dist/rex_shakemod.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_shakemod/dist/rex_shakemod.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/example/shake + sine.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_shakemod/example/shake + sine.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - table to csv.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - table to csv.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2array/dist/rex_csv2array.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv2array/dist/rex_csv2array.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPIV3.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPIV3.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_Query.Cnds = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_Query.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/source/cors.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "origin": ["*"], 4 | "method": ["GET"], 5 | "maxAgeSeconds": 3600 6 | } 7 | ] -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - sort.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - sort.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hashtable_pickkeys.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hashtable_pickkeys.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/examples/time away L.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/examples/time away L.capx -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/dist/discord_richpresence.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/dist/discord_richpresence.c2addon -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/dist/discord_richpresence_c2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/dist/discord_richpresence_c2.zip -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/source/files/discord/common.js: -------------------------------------------------------------------------------- 1 | // Scripts in this file are included in both the IDE and runtime, so you only 2 | // need to write scripts common to both once. 3 | -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/dist/discord_richpresence.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/dist/discord_richpresence.c3addon -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/dist/discord_richpresence_c3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/dist/discord_richpresence_c3.zip -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/example_c3p/easystarjsdemo.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/easystarjs/example_c3p/easystarjsdemo.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/example_c3p/testeasystar.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/easystarjs/example_c3p/testeasystar.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/example/anchor2 - center.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor2/example/anchor2 - center.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/example/anchor mod.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor_mode/example/anchor mod.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/dist/rex_anglelock.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anglelock/dist/rex_anglelock.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/example/test_anglelock.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anglelock/example/test_anglelock.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/example/beat counter.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_betCounter/example/beat counter.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_grid_move/dist/rex_grid_move.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_grid_move/dist/rex_grid_move.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/dist/cbhash_release_r70_1.0.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/cbhash/dist/cbhash_release_r70_1.0.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/example/ANN - XOR_dict inout.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ann/example/ANN - XOR_dict inout.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - eval cell value.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - eval cell value.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userlist/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_Userlist.Exps = 5 | { 6 | 7 | }; 8 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/firebase_cors_error.txt: -------------------------------------------------------------------------------- 1 | https://stackoverflow.com/questions/37760695/firebase-storage-and-access-control-allow-origin/37765371#37765371 -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ginstgroup/dist/rex_ginstgroup.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_ginstgroup/dist/rex_ginstgroup.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - add to.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - add to.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - for each.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - for each.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - set JSON.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - set JSON.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - shuffle.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - shuffle.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/example/json builder.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_json_builder/example/json builder.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/dist/rex_time_awayL.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/dist/rex_time_awayL.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_importer_v2/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_importer_v2/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/sweet alert 2/example c3p/sweetalert2.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/sweet alert 2/example c3p/sweetalert2.c3p -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/dist/tr_clockparser.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/tr_clockparser/dist/tr_clockparser.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/example/TR_ClockParser.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/tr_clockparser/example/TR_ClockParser.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/trblsm_storage/dist/TRBLSM_storage.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/trblsm_storage/dist/TRBLSM_storage.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/trblsm_storage/example/StorageExample.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/trblsm_storage/example/StorageExample.capx -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/source/files/discord/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/source/files/discord/PluginIcon.ico -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/dist/rex_betCounter.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_betCounter/dist/rex_betCounter.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - basic.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - basic.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.CBhash.Cnds = 5 | { 6 | OnHashed() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - dump in csv string.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - dump in csv string.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - previous, next col.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - previous, next col.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - load, read.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - load, read.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - push JSON.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - push JSON.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hashtable - sort value.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hashtable - sort value.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/scorm_c3_plugin/dist/scorm_c3runtime.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/scorm_c3_plugin/dist/scorm_c3runtime.c3addon -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c2/dist/discord_richpresence_v1.2.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c2/dist/discord_richpresence_v1.2.c2addon -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/dist/discord_richpresence_v1.1.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/discord_rich_presence/c3/dist/discord_richpresence_v1.1.c3addon -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c2/dist/firebase_remote_config.c2addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/firebase_remote_config/c2/dist/firebase_remote_config.c2addon -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/dist/firebase_remote_config.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/firebase_remote_config/c3/dist/firebase_remote_config.c3addon -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/sample c3p/firebase_remote_config.c3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/plugins/firebase_remote_config/c3/sample c3p/firebase_remote_config.c3p -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/dist/easystartilemap_1_04.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/easystarjs/dist/easystartilemap_1_04.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/dist/rex_anchor_mode.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor_mode/dist/rex_anchor_mode.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/dist/rex_pushoutsolid.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_pushoutsolid/dist/rex_pushoutsolid.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/example/Example (Freaking Letters).capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/ExtraExp/example/Example (Freaking Letters).capx -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/README.md: -------------------------------------------------------------------------------- 1 | cbhash construct3 runtime 2 | 3 | official plugin page 4 | 5 | https://www.construct.net/en/forum/extending-construct-2/addons-29/plugin-cb-hash-md5-sha-1-and-s-39765 -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board/dist/rex_board.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board/dist/rex_board.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexTx/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_hexTx/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/example/csv - number index col,row.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv/example/csv - number index col,row.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/firebase_cors_error.txt: -------------------------------------------------------------------------------- 1 | https://stackoverflow.com/questions/37760695/firebase-storage-and-access-control-allow-origin/37765371#37765371 -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - iterate loop.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - iterate loop.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hashtable_pick random key.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hashtable_pick random key.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/dist/rex_json_builder.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_json_builder/dist/rex_json_builder.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_slg_movement/dist/rex_slg_movement.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_slg_movement/dist/rex_slg_movement.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - duration.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - duration.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/dist/simpleqrscanner.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/simple_qr_scanner/dist/simpleqrscanner.c3addon -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_DiscordRPC.Cnds = 5 | { 6 | onpresence() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/example/anchor2 - right center.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_anchor2/example/anchor2 - right center.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/example/camera follower.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_cameraFollower/example/camera follower.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/example/platfrom_MoveTo.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_platform_moveto/example/platfrom_MoveTo.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/example/pushOut - manually.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_pushoutsolid/example/pushOut - manually.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - platformer.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - platformer.capx -------------------------------------------------------------------------------- /ported_plugins/lunarray_litetween/dist/LiteTween v.1.7_c3runtime.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/lunarray_litetween/dist/LiteTween v.1.7_c3runtime.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/jcw_trace/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.jcw_trace.Cnds = 5 | { 6 | Hit() 7 | { 8 | return this.tr.hit; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_squareTx/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_squareTx/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2dictionary/dist/rex_csv2dictionary.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_csv2dictionary/dist/rex_csv2dictionary.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/example/json builder - error.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_json_builder/example/json builder - error.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/examples/time away L - remove.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/examples/time away L - remove.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/examples/time awayL - 2 timer.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/examples/time awayL - 2 timer.capx -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_base64_image.Cnds = 5 | { 6 | on_base64() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.PinPlus.Cnds = 5 | { 6 | IsPinned() 7 | { 8 | return !!this.pinObject; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_bhash/example/hash table behavior - basic.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_bhash/example/hash table behavior - basic.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/dist/rex_camerafollower.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_cameraFollower/dist/rex_camerafollower.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/dist/rex_pin2imagepoint.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_pin2imagepoint/dist/rex_pin2imagepoint.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - embed speed.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_zigzag/example_capx/zigzag - embed speed.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/counter/counter v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/counter/counter v3.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor2.Cnds = 5 | { 6 | OnAnchored() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_anglelock.Exps = 5 | { 6 | MyExpression() 7 | { 8 | return 1337; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/dist/rex_platform_moveto.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/rex_platform_moveto/dist/rex_platform_moveto.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/post-get.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/post-get.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/rooms/rooms - basic.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/rooms/rooms - basic.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/rooms/rooms - random.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/rooms/rooms - random.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/off game time.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/off game time.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/example/hash table - for each - CurValue.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_hash/example/hash table - for each - CurValue.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/examples/time away L - pause resume.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_time_awayL/examples/time away L - pause resume.capx -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_base64_image.Exps = 5 | { 6 | base_64_link() 7 | { 8 | return base64_link; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor_mod.Cnds = 5 | { 6 | OnAnchored() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_light.Cnds = 5 | { 6 | IsHit() 7 | { 8 | return (this.exp_HitUID !== -1); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.cjs.Exps = 5 | { 6 | ReadExecutionReturn(any) 7 | { 8 | return this.returnValue; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.jsPDF.Cnds = 5 | { 6 | on_base64() 7 | { 8 | console.log("a"); 9 | return true; 10 | } 11 | }; 12 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/geofire/geofire - basic.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/geofire/geofire - basic.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/presence v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/presence v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/query/orderByValue v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/query/orderByValue v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/saveslot v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/saveslot v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/firebase timer v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/firebase timer v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/off game time v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/off game time v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/token/token v3 - master.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/token/token v3 - master.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/dist/rex_tmx_XML_parser.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/dist/rex_tmx_XML_parser.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - basic (JSON parser).capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - basic (JSON parser).capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/lunarray_litetween/dist/LiteTween v.1.7_c3runtime.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/behaviors/lunarray_litetween/dist/LiteTween v.1.7_c3runtime.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexTx/dist/rex_board_hexTx.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_hexTx/dist/rex_board_hexTx.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_rooms/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_rooms/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_timer/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_timer/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/counter/custom counter v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/counter/custom counter v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/curTime/current timestamp.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/curTime/current timestamp.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/item table v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/item table v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/add to score.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/add to score.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/dist/rex_tmx_JSON_parser.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/dist/rex_tmx_JSON_parser.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_importer_v2/dist/rex_tmx_importer_v2.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/rex_tmx_importer_v2/dist/rex_tmx_importer_v2.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - for each tile at LXY.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_tmx/samples/tmx importer v2 - for each tile at LXY.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/time_manager/example/TimeManagerPluginExampleFile_1_08.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/time_manager/example/TimeManagerPluginExampleFile_1_08.capx -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_requestreview.Exps = 5 | { 6 | result() 7 | { 8 | return (this.result); 9 | } 10 | }; 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_anglelock.Cnds = 5 | { 6 | IsMoving() 7 | { 8 | return false; // placeholder 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_pushOutSolid.Exps = 5 | { 6 | Double(number) 7 | { 8 | return number * 2; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/dist/rex_board_cubeTx.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/dist/rex_board_cubeTx.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_counter/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_counter/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itembook/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itembook/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_savedata/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_savedata/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userlist/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userlist/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/auto update v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/auto update v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/manual update v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/manual update v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/post if greater.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/post if greater.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/saveslot v3 - auth.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/saveslot v3 - auth.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/single login/single login v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/single login/single login v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - dataURI.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - dataURI.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - sprite.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - sprite.capx -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_pushOutSolid.Cnds = 5 | { 6 | IsLargeNumber(number) 7 | { 8 | return number > 100; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_squareTx/dist/rex_board_squareTx.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_squareTx/dist/rex_board_squareTx.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase/dist/rex_firebase.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase/dist/rex_firebase.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemfilter/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemfilter/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemtable/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemtable/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userid2id/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userid2id/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/Simple message/Simple chat v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/Simple message/Simple chat v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - online.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - online.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - presence.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - presence.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - set JSON.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - set JSON.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item monitor/monitor all items.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item monitor/monitor all items.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/test - auto update.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/leaderboard/test - auto update.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/save user variables.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/save slot/save user variables.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_XML_parser.Exps = 5 | { 6 | Double(number) 7 | { 8 | return number * 2; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemmonitor/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemmonitor/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_leaderboard/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_leaderboard/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_simplemessage/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_simplemessage/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_singleLogin/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_singleLogin/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_transaction/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_transaction/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - anonymous.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - anonymous.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/email-password v3.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/email-password v3.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - set value.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - set value.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item monitor/monitor query items.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item monitor/monitor query items.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - file chooser.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - file chooser.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/firebase timer - count down.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/timer/firebase timer - count down.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_JSONBuider.Exps = 5 | { 6 | AsJSON() 7 | { 8 | return(JSON.stringify(this.data)); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_pin2imgpt.Cnds = 5 | { 6 | IsPinned() 7 | { 8 | return !!this.pinObject; 9 | } 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_authentication/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_authentication/source/icon.png -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/UserID2ID/UserID2ID v3 - manual ID.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/UserID2ID/UserID2ID v3 - manual ID.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/UserID2ID/UserID2ID v3 - random ID.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/UserID2ID/UserID2ID v3 - random ID.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_XML_parser.Cnds = 5 | { 6 | IsLargeNumber(number) 7 | { 8 | return number > 100; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.SimpleQRScanner.Exps = 5 | { 6 | decodedQRCode() 7 | { 8 | return this.result; 9 | } 10 | }; 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/dist/rex_board_hexShapeMap.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/dist/rex_board_hexShapeMap.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/dist/rex_board_projectionTx.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/dist/rex_board_projectionTx.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_squareTx/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGSquareTx.Cnds = 5 | { 6 | IsLargeNumber(number) 7 | { 8 | return number > 100; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/dist/rex_firebase_api.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/dist/rex_firebase_api.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_message.Cnds = 5 | { 6 | OnNewMessage() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - link to facebook.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - link to facebook.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/firebase- auth - logout.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/firebase- auth - logout.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/send verification email.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/send verification email.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - message append.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - message append.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - pick random item.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - pick random item.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - requests queue.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - requests queue.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - table to taffydb.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - table to taffydb.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item filter/item filter v3 - condition.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item filter/item filter v3 - condition.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - gif (objectURL).capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - gif (objectURL).capx -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.jsPDF.Exps = 5 | { 6 | dataurl() 7 | { 8 | var myData = this.doc["output"]('dataurlstring'); 9 | return(myData); 10 | } 11 | }; 12 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_ProjectionTx.Cnds = 5 | { 6 | IsLargeNumber(number) 7 | { 8 | return number > 100; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook or google.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook or google.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/send password reset email.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/send password reset email.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - dataURI + metadata.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/storage/storage v3 - dataURI + metadata.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_tmx_XML_parser.Acts = 5 | { 6 | Alert() 7 | { 8 | alert("Test property = " + this._testProperty); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/dist/rex_firebase_apiv3.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/dist/rex_firebase_apiv3.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/dist/rex_firebase_query.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/dist/rex_firebase_query.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_rooms/dist/rex_firebase_rooms.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_rooms/dist/rex_firebase_rooms.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_timer/dist/rex_firebase_timer.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_timer/dist/rex_firebase_timer.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/dist/rex_firebase_token.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/dist/rex_firebase_token.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_Token.Exps = 5 | { 6 | OwnerID() 7 | { 8 | return (this.token.ownerID); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - my connection state.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - my connection state.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - server time offset.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/firebase/firebase v3 - server time offset.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_counter/dist/rex_firebase_counter.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_counter/dist/rex_firebase_counter.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/dist/rex_firebase_curTime.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/dist/rex_firebase_curTime.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/dist/rex_firebase_geofire.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/dist/rex_firebase_geofire.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/dist/rex_firebase_message.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/dist/rex_firebase_message.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/dist/rex_firebase_storage.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_storage/dist/rex_firebase_storage.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_SyncQueue.Exps = 5 | { 6 | LastIn() 7 | { 8 | return (this.exp_LastIn); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - link to email@password.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth - link to email@password.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook - access token.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/authentication/auth -facebook - access token.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itembook/dist/rex_firebase_itembook.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itembook/dist/rex_firebase_itembook.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_savedata/dist/rex_firebase_savedata.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_savedata/dist/rex_firebase_savedata.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_simplemessage/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_SimpleMessage.Cnds = 5 | { 6 | OnReceivedMessage() 7 | { 8 | return true; 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userlist/dist/rex_firebase_userlist.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userlist/dist/rex_firebase_userlist.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_pin2imgpt.Exps = 5 | { 6 | PinnedUID() 7 | { 8 | return this.pinObject ? this.pinObject.GetUID() : -1; 9 | } 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemtable/dist/rex_firebase_itemtable.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemtable/dist/rex_firebase_itemtable.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/dist/rex_firebase_syncqueue.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/dist/rex_firebase_syncqueue.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userid2id/dist/rex_firebase_userid2id.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_userid2id/dist/rex_firebase_userid2id.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemfilter/dist/rex_firebase_itemfilter.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemfilter/dist/rex_firebase_itemfilter.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemmonitor/dist/rex_firebase_itemmonitor.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itemmonitor/dist/rex_firebase_itemmonitor.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_leaderboard/dist/rex_firebase_leaderboard.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_leaderboard/dist/rex_firebase_leaderboard.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_singleLogin/dist/rex_firebase_singleLogin.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_singleLogin/dist/rex_firebase_singleLogin.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_transaction/dist/rex_firebase_transaction.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_transaction/dist/rex_firebase_transaction.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - prepare items in tree or list.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - prepare items in tree or list.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - update, load all, load by cond.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item book/item book - update, load all, load by cond.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/itemtable v3 - foreach item, foreach key.capx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/sample_capx/item table/itemtable v3 - foreach item, foreach key.capx -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_simplemessage/dist/rex_firebase_simplemessage.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_simplemessage/dist/rex_firebase_simplemessage.c3addon -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FSM.Exps = 5 | { 6 | CurState() 7 | { 8 | return(this.fsm.CurState); 9 | }, 10 | 11 | PreState() 12 | { 13 | return(this.fsm.PreState); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_authentication/dist/rex_firebase_authentication.c3addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erenertugrul/construct-plugins/HEAD/ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_authentication/dist/rex_firebase_authentication.c3addon -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_betCounter.Acts = 5 | { 6 | Beat(count) 7 | { 8 | this.beat(count); 9 | }, 10 | 11 | Clean() 12 | { 13 | this.beat_recorder.length = 0; 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_FSM.Exps = 5 | { 6 | CurState() 7 | { 8 | return(this.fsm.CurState); 9 | }, 10 | 11 | PreState() 12 | { 13 | return(this.fsm.PreState); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.cjs = class cjsPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.jsPDF = class jsPDFPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/mkarray/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.mkArray = class mkArrayPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.imgur_upload = class imgur_uploadPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/notifier/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_notifier = class NotifierPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.PinPlus = class PinPlus extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Date = class Rex_DatePlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/notifier/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.erenertugrul_notifier; 5 | 6 | PLUGIN_CLASS.Type = class NotifierType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_chess/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_chess = class Rex_chess extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_ShakeMod.Cnds = 5 | { 6 | OnShackingEnd() 7 | { 8 | return (this.is_my_call); 9 | }, 10 | IsShaking() 11 | { 12 | return (this.enabled && this.isShaking); 13 | } 14 | }; 15 | } -------------------------------------------------------------------------------- /plugins/jszip/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.eren_jszip; 5 | 6 | PLUGIN_CLASS.Type = class eren_jszipType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor2 = class rex_Anchor2 extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.cjs; 5 | 6 | PLUGIN_CLASS.Type = class cjsType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_DiscordRPC = class eren_DiscordRPCPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_base64_image = class SingleGlobalPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_requestreview = class eren_requestreviewPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_ShakeMod = class Rex_ShakeMod extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.CBhash; 5 | 6 | PLUGIN_CLASS.Type = class CBhashType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.jsPDF; 5 | 6 | PLUGIN_CLASS.Type = class jsPDFType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_TimeAwayL = class Rex_TimeAwayLPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/scorm_c3_plugin/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.scormc2; 5 | 6 | PLUGIN_CLASS.Type = class C3ScormPluginType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.TR_ClockParser = class TR_ClockParserPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_firebase_remote = class firebase_remotePlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.erenertugrul_base64_image; 5 | 6 | PLUGIN_CLASS.Type = class base64_imageType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor_mod = class rex_Anchor_mod extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_anglelock.Acts = 5 | { 6 | SetActivated(s) 7 | { 8 | this.activated = (s==1); 9 | }, 10 | 11 | SetLockedAngle(a) 12 | { 13 | this.locked_angle = to_clamped_radians(a); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_Platform_MoveTo.Cnds = 5 | { 6 | OnHitTarget() 7 | { 8 | return (this.isMyCall); 9 | }, 10 | 11 | IsMoving() 12 | { 13 | return (this.activated && this.isMoving); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/magicam/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.MagiCam; 5 | 6 | PLUGIN_CLASS.Type = class MagiCamType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/mkarray/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.mkArray; 5 | 6 | PLUGIN_CLASS.Type = class mkArrayType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_ANN; 5 | 6 | PLUGIN_CLASS.Type = class Rex_ANNType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_CSV; 5 | 6 | PLUGIN_CLASS.Type = class Rex_CSVType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Date; 5 | 6 | PLUGIN_CLASS.Type = class Rex_DateType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_FSM; 5 | 6 | PLUGIN_CLASS.Type = class Rex_FSMType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Hash; 5 | 6 | PLUGIN_CLASS.Type = class Rex_HashType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_JSONBuider = class Rex_JSONBuiderPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.SimpleQRScanner = class SimpleQRScannerPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.imgur_upload; 5 | 6 | PLUGIN_CLASS.Type = class imgur_uploadType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.ExtraExps; 5 | 6 | PLUGIN_CLASS.Type = class ExtraExpsType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/jcw_trace/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.jcw_trace; 5 | 6 | PLUGIN_CLASS.Type = class jcw_traceType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/mouselock/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.MouseLock; 5 | 6 | PLUGIN_CLASS.Type = class MouseLockType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_requestreview.Cnds = 5 | { 6 | onView() 7 | { 8 | return true; 9 | }, 10 | onPage() 11 | { 12 | return true; 13 | }, 14 | 15 | onError() 16 | { 17 | return true; 18 | } 19 | }; 20 | } 21 | 22 | 23 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_betCounter.Exps = 5 | { 6 | BetCount() 7 | { 8 | return (this.beat_recorder.length); 9 | }, 10 | 11 | BeatCount() 12 | { 13 | return (this.beat_recorder.length); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGCubeTx = class Rex_SLGCubeTxPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_taffyd/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_taffydb; 5 | 6 | PLUGIN_CLASS.Type = class Rex_taffydbType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/sweet alert 2/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.SweetAlert = class SweetAlertPlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } 17 | -------------------------------------------------------------------------------- /ported_plugins/plugins/sweet alert 2/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.SweetAlert; 5 | 6 | PLUGIN_CLASS.Type = class SweetAlertType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.eren_DiscordRPC; 5 | 6 | PLUGIN_CLASS.Type = class eren_DiscordRPCType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/circle/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Circle; 5 | 6 | BEHAVIOR_CLASS.Type = class CircleType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_moveto/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_MoveTo; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_MoveToType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2array/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_CSV2Array; 5 | 6 | PLUGIN_CLASS.Type = class Rex_CSV2ArrayType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.imgur_upload.Exps = 5 | { 6 | imagelink() 7 | { 8 | return image_link; 9 | }, 10 | hashcode() 11 | { 12 | return delete_hash; 13 | }, 14 | errorcode() 15 | { 16 | return any_error; 17 | } 18 | }; 19 | } 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.eren_requestreview; 5 | 6 | PLUGIN_CLASS.Type = class eren_requestreviewType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.PinPlus; 5 | 6 | BEHAVIOR_CLASS.Type = class PinPlusType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_FSM; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_FSMType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/lunarray_litetween/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.lunarray_LiteTween; 5 | 6 | BEHAVIOR_CLASS.Type = class lunarray_LiteTween extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.cjs.Acts = 5 | { 6 | ExecuteJS(myparam) 7 | { 8 | this.returnValue= ""; 9 | try 10 | { 11 | this.returnValue= eval(myparam); 12 | } catch(err) 13 | { 14 | this.returnValue= err; 15 | } 16 | } 17 | }; 18 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/c3runtime/actions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FirebaseAPIV3.Acts = 5 | { 6 | initializeApp(apiKey, authDomain, databaseURL, storageBucket) 7 | { 8 | this.initializeApp(apiKey, authDomain, databaseURL, storageBucket); 9 | } 10 | }; 11 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_CurTime.Cnds = 5 | { 6 | IsUpdating() { 7 | return (this.lastServerTimestamp != null); 8 | }, 9 | 10 | OnStart() { 11 | return true; 12 | } 13 | }; 14 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ginstgroup/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_gInstGroup; 5 | 6 | PLUGIN_CLASS.Type = class Rex_gInstGroupType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_JSONBuider; 5 | 6 | PLUGIN_CLASS.Type = class Rex_JSONBuiderType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_TimeAwayL; 5 | 6 | PLUGIN_CLASS.Type = class Rex_TimeAwayLType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/time_manager/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.CAMFTimeManager; 5 | 6 | PLUGIN_CLASS.Type = class CAMFTimeManagerType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.TR_ClockParser; 5 | 6 | PLUGIN_CLASS.Type = class TR_ClockParserType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/trblsm_storage/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.trblsm_storage; 5 | 6 | PLUGIN_CLASS.Type = class trblsm_storageType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/jszip/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_jszip.Type = class eren_jszipType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.lgshake; 5 | 6 | BEHAVIOR_CLASS.Type = class lgshakeType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_bhash/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_bHash; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_bHashType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_chess/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_chess; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_chessType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_light/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_light; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_lightType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_pin2imgpt = class Rex_pin2imgpt extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } 17 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_Platform_MoveTo.Exps = 5 | { 6 | Activated() 7 | { 8 | return((this.activated) ? 1 : 0); 9 | }, 10 | 11 | TargetX(){ 12 | var x = (this.isMoving) ? this.target["x"] : 0; 13 | return(x); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/call_js/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.cjs.Type = class cjsType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_SLGBoard; 5 | 6 | PLUGIN_CLASS.Type = class Rex_SLGBoardType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_slg_movement/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_SLGMovement; 5 | 6 | PLUGIN_CLASS.Type = class Rex_SLGMovementType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.SimpleQRScanner; 5 | 6 | PLUGIN_CLASS.Type = class SimpleQRScannerType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.eren_firebase_remote; 5 | 6 | PLUGIN_CLASS.Type = class eren_firebase_remoteType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/lunarray_litetween/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.lunarray_LiteTween; 5 | 6 | BEHAVIOR_CLASS.Type = class lunarray_LiteTween extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.rex_Anchor2; 5 | 6 | BEHAVIOR_CLASS.Type = class rex_Anchor2Type extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_maxmin/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_maxmin; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_maxminType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_Zigzag; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_ZigzagType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/cbhash/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.CBhash.Type = class CBhashType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/jspdf/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.jsPDF.Type = class jsPDFType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexTx/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_SLGHexTx; 5 | 6 | PLUGIN_CLASS.Type = class Rex_SLGHexTxType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2dictionary/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_CSV2Dictionary; 5 | 6 | PLUGIN_CLASS.Type = class Rex_CSV2DictionaryType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.rex_anglelock; 5 | 6 | BEHAVIOR_CLASS.Type = class rex_anglelockType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_grid_move/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_GridMove; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_GridMoveType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/source/c3runtime/behavior.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var __candidates = []; 3 | { 4 | C3.Behaviors.Rex_pushOutSolid = class Rex_pushOutSolidPlugin extends C3.SDKBehaviorBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_rotateto/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_RotateTo; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_RotateToType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_ShakeMod; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_ShakeModType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/magicam/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.MagiCam.Type = class MagiCamType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/mkarray/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.mkArray.Type = class mkArrayType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ann/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_ANN.Type = class Rex_ANNType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_cubeTx/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_SLGCubeTx; 5 | 6 | PLUGIN_CLASS.Type = class Rex_SLGCubeTxType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_CSV.Type = class Rex_CSVType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_gfsm/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_FSM.Type = class Rex_FSMType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_hash/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Hash.Type = class Rex_HashType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.imgur_upload.Type = class imgur_uploadType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /plugins/notifier/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_notifier.Type = class NotifierType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.EasystarTilemap; 5 | 6 | BEHAVIOR_CLASS.Type = class EasystarTilemapType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor_mode/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.rex_Anchor_mod; 5 | 6 | BEHAVIOR_CLASS.Type = class rex_Anchor_modType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_betCounter/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_betCounter; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_betCounterType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pin2imagepoint/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_pin2imgpt; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_pin2imgptType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_platform_moveto/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_Platform_MoveTo; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_Platform_MoveToType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/ExtraExp/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.ExtraExps.Type = class ExtraExpsType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/mouselock/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.MouseLock.Type = class MouseLockType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_squareTx/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_SLGSquareTx; 5 | 6 | PLUGIN_CLASS.Type = class Rex_SLGSquareTxType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase; 5 | 6 | PLUGIN_CLASS.Type = class Rex_FirebaseType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_Geofire = class Rex_Firebase_GeofirePlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_message/source/c3runtime/plugin.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_message = class Rex_Firebase_messagePlugin extends C3.SDKPluginBase 5 | { 6 | constructor(opts) 7 | { 8 | super(opts); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_XML_parser/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_tmx_XML_parser; 5 | 6 | PLUGIN_CLASS.Type = class Rex_tmx_XML_parserType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/scorm_c3_plugin/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.scormc2.Type = class scormc2Type extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.SimpleQRScanner.Cnds = 5 | { 6 | onDecoded() 7 | { 8 | return true; 9 | }, 10 | 11 | onDecodeError() 12 | { 13 | return true; 14 | }, 15 | 16 | onDecodeCancel() 17 | { 18 | return true; 19 | } 20 | }; 21 | } 22 | 23 | 24 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/circle/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Circle.Type = class CircleType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_pushoutsolid/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_pushOutSolid; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_pushOutSolidType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexShapeMap/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_hexShapeMap; 5 | 6 | PLUGIN_CLASS.Type = class Rex_hexShapeMapType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_projectionTx/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_ProjectionTx; 5 | 6 | PLUGIN_CLASS.Type = class Rex_ProjectionTxType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_date/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Date.Type = class Rex_DateType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | 19 | } 20 | }; 21 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_syncqueue/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_SyncQueue.Cnds = 5 | { 6 | OnGetData() 7 | { 8 | return true; 9 | }, 10 | 11 | OnGetInputData() 12 | { 13 | this.has_input_handler = true; 14 | return true; 15 | } 16 | }; 17 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_JSONBuider.Cnds = 5 | { 6 | AddObject(k_, type_) 7 | { 8 | return this.add_object(k_, type_); 9 | }, 10 | 11 | SetRoot(type_) 12 | { 13 | this.clean(); 14 | return this.add_object("", type_); 15 | } 16 | }; 17 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_JSON_parser/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_tmx_JSON_parser; 5 | 6 | PLUGIN_CLASS.Type = class Rex_tmx_JSON_parserType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_tmx/rex_tmx_importer_v2/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_tmx_importer_v2; 5 | 6 | PLUGIN_CLASS.Type = class Rex_tmx_importer_v2Type extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/discord_rich_presence/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_DiscordRPC.Type = class eren_DiscordRPCType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/lg_shake/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.lgshake.Type = class lgshakeType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/pin_plus/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.PinPlus.Type = class PinPlusType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_bhash/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_bHash.Type = class Rex_bHash extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_cameraFollower/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const BEHAVIOR_CLASS = SDK.Behaviors.Rex_CameraFollower; 5 | 6 | BEHAVIOR_CLASS.Type = class Rex_CameraFollowerType extends SDK.IBehaviorTypeBase 7 | { 8 | constructor(sdkPlugin, iBehaviorType) 9 | { 10 | super(sdkPlugin, iBehaviorType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_fsm/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_FSM.Type = class Rex_FSMType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2array/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_CSV2Array.Type = class Rex_CSV2ArrayType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_api/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_FirebaseAPI; 5 | 6 | PLUGIN_CLASS.Type = class Rex_FirebaseAPIType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/source/c3runtime/expressions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_Firebase_CurTime.Exps = 5 | { 6 | Timestamp() { 7 | return (Math.floor(this.getCurTimestamp())); 8 | }, 9 | 10 | LastPredictedError() { 11 | return (this.lastPredictErr); 12 | } 13 | }; 14 | } -------------------------------------------------------------------------------- /plugins/image_to_base64/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.erenertugrul_base64_image.Type = class SingleGlobalType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /plugins/imgur_uploader/c3/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.imgur_upload.Cnds = 5 | { 6 | on_url_upload(m) 7 | { 8 | return true; 9 | }, 10 | error_upload(m) 11 | { 12 | return true; 13 | }, 14 | on_delete(m) 15 | { 16 | return true; 17 | }, 18 | error_delete(m) 19 | { 20 | return true; 21 | } 22 | }; 23 | } -------------------------------------------------------------------------------- /plugins/ios_requestreview/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_requestreview.Type = class eren_requestreviewType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_chess/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_chess.Type = class Rex_chessType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_maxmin/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_maxmin.Type = class Rex_maxminType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_moveto/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_MoveTo.Type = class Rex_MoveToType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_zigzag/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_Zigzag.Type = class Rex_ZigzagType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_apiv3/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_FirebaseAPIV3; 5 | 6 | PLUGIN_CLASS.Type = class Rex_FirebaseAPIV3Type extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_ginstgroup/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_gInstGroup.Type = class Rex_gInstGroupType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_json_builder/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_JSONBuider.Type = class Rex_JSONBuiderType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/time_manager/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.CAMFTimeManager.Type = class CAMFTimeManagerType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/tr_clockparser/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.TR_ClockParser.Type = class TR_ClockParserType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/trblsm_storage/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.trblsm_storage.Type = class trblsm_storageType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /plugins/firebase_remote_config/c3/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.eren_firebase_remote.Type = class firebase_remoteType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anchor2/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_Anchor2.Type = class rex_Anchor2Type extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGBoard.Type = class Rex_SLGBoardType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_query/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Query; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_QueryType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_rooms/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Rooms; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_RoomsType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_timer/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Timer; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_TimerType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_token/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Token; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_TokenType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_slg_movement/source/c3runtime/conditions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGMovement.Cnds = 5 | { 6 | OnCostFn(name) 7 | { 8 | return C3.equalsNoCase(name, this.costFnName); 9 | }, 10 | 11 | OnFilterFn(name) 12 | { 13 | return C3.equalsNoCase(name, this.filterFnName); 14 | } 15 | }; 16 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_slg_movement/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGMovement.Type = class Rex_SLGMovementType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_time_awayL/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_TimeAwayL.Type = class Rex_TimeAwayLType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | 19 | } 20 | }; 21 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/simple_qr_scanner/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.SimpleQRScanner.Type = class SimpleQRScannerType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/easystarjs/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.EasystarTilemap.Type = class EasystarTilemapType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_anglelock/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.rex_anglelock.Type = class rex_anglelockType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/behaviors/rex_shakemod/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Behaviors.Rex_ShakeMod.Type = class Rex_ShakeModType extends C3.SDKBehaviorTypeBase 5 | { 6 | constructor(behaviorType) 7 | { 8 | super(behaviorType); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_board_pack/rex_board_hexTx/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_SLGHexTx.Type = class Rex_SLGHexTxType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_csv2dictionary/source/c3runtime/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | C3.Plugins.Rex_CSV2Dictionary.Type = class Rex_CSV2DictionaryType extends C3.SDKTypeBase 5 | { 6 | constructor(objectClass) 7 | { 8 | super(objectClass); 9 | } 10 | 11 | Release() 12 | { 13 | super.Release(); 14 | } 15 | 16 | OnCreate() 17 | { 18 | } 19 | }; 20 | } -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_counter/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Counter; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_CounterType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_curTime/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_CurTime; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_CurTimeType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_geofire/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_Geofire; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_GeofireType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | -------------------------------------------------------------------------------- /ported_plugins/plugins/rex_firebase_pack/plugins/rex_firebase_itembook/source/type.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | { 4 | const PLUGIN_CLASS = SDK.Plugins.Rex_Firebase_ItemBook; 5 | 6 | PLUGIN_CLASS.Type = class Rex_Firebase_ItemBookType extends SDK.ITypeBase 7 | { 8 | constructor(sdkPlugin, iObjectType) 9 | { 10 | super(sdkPlugin, iObjectType); 11 | } 12 | }; 13 | } 14 | --------------------------------------------------------------------------------