├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── 404.html ├── CNAME ├── animation.js ├── arm.html ├── armMiniGame.js ├── assets │ ├── anim │ │ ├── guy1.png │ │ ├── guy2.png │ │ ├── guy3.png │ │ ├── guy4.png │ │ ├── guy5.png │ │ ├── guy6.png │ │ └── guy6Crowd.png │ ├── codeEditor.png │ ├── fontemon.otf │ ├── fontemonLogo.png │ ├── fontkid0001.png │ ├── image_editor.png │ ├── mp4.mp4 │ ├── snip.png │ ├── webTitle0001.png │ └── webm.webm ├── examples.html ├── favicon.png ├── fontemon.html ├── gettingStarted.html ├── index.html ├── maintainer.html ├── navigation.html ├── privacy.html └── terms.html ├── gulp ├── DevelopmentServer.ts ├── compileClientSideTypescript.ts ├── compileGenerationTypescript.ts ├── directories.ts ├── generateFiles.ts ├── livereload.ts ├── runDevelopmentHTTPServer.ts ├── watchClientSideTypescript.ts ├── watchCodeExamples.ts ├── watchGenerationTypescript.ts └── watchJavascriptForGeneration.ts ├── gulpfile.ts ├── markdown ├── HowIDidIt.md ├── Secrets.md ├── Tutorial.md ├── fontemon_credits │ ├── Readme.md │ ├── art_by_artist.json │ └── art_by_file_name.json ├── how │ ├── converter.png │ ├── dependency.png │ ├── draw1.png │ ├── draw2.png │ ├── fge1.png │ ├── glyph00000.png │ ├── glyph00001.png │ ├── glyph00002.png │ ├── good_colors.png │ ├── ligatures.png │ ├── logic.png │ ├── node_tree.png │ ├── node_tree2.png │ ├── node_tree3.png │ ├── password_branching.png │ ├── pixels.png │ ├── pixels_checker.png │ ├── test_1.png │ └── textPreviewTool.png └── tutorial │ ├── LoadAnimatedImages.png │ ├── add_animation_button.png │ ├── add_condition_node.png │ ├── add_empty.png │ ├── add_end_node.png │ ├── add_first_scene_node.png │ ├── add_image_home_base.png │ ├── add_image_to_empty.png │ ├── add_parent_button.png │ ├── add_plain_axes.png │ ├── addons.png │ ├── animate_select_all.png │ ├── arrows.png │ ├── autokey.png │ ├── bad_loop.png │ ├── bad_lost_scene.png │ ├── convert_done.png │ ├── convert_save.png │ ├── converter.png │ ├── converter_tool.png │ ├── create_text_button.png │ ├── empty_layout.png │ ├── empty_selected.png │ ├── enable.png │ ├── end_scene_node.png │ ├── exampe_branch.png │ ├── export_scene_tree_info.png │ ├── export_to_font.png │ ├── first_scene_node.png │ ├── first_scene_node_assign.png │ ├── first_tree.png │ ├── full_copy.png │ ├── install.png │ ├── jump_to_scene.png │ ├── lost_example.png │ ├── new_scene.png │ ├── notice_object_change.png │ ├── open_file.png │ ├── play_twice.png │ ├── powershell_here.png │ ├── preferences.png │ ├── rotate_90.png │ ├── saved_message.png │ ├── scene_tree_workspace.png │ ├── scrub_time.png │ ├── second_scene_node.png │ ├── second_scene_rename.png │ ├── see_snock.png │ ├── see_sprite.png │ ├── select_parent.png │ ├── slot_example_1.png │ ├── slot_properties.png │ ├── slots_node_tree.png │ ├── slots_node_tree_good.png │ ├── sprites │ ├── artByArtist.json │ ├── charStrings │ │ ├── whisp_fire00.charstring │ │ ├── whisp_fire01.charstring │ │ ├── whisp_fire02.charstring │ │ ├── whisp_fire03.charstring │ │ └── whisp_fire04.charstring │ ├── credits.json │ ├── snock.png │ ├── whisp_fire00.png │ ├── whisp_fire01.png │ ├── whisp_fire02.png │ ├── whisp_fire03.png │ └── whisp_fire04.png │ ├── switch_scenes.png │ ├── switch_to_layout.png │ ├── test_1.png │ ├── test_font_button.png │ ├── textPreviewTool.png │ ├── text_example.png │ ├── text_preview_tool_button.png │ ├── time_end.png │ ├── time_type.png │ ├── transform_output_button.png │ ├── tree2.png │ ├── tree3.png │ ├── visible_animation.png │ └── zip.png ├── package.json ├── scripts ├── README.md ├── codeExamples │ ├── README.md │ ├── madeWithCodeRelay.html │ ├── notFound.jsx │ ├── quickExample1.jsx │ ├── quickExample2.jsx │ ├── spin4B1.css │ ├── spin4B2.css │ ├── step2.jsx │ ├── step3.jsx │ ├── step4A.jsx │ ├── step4B.jsx │ ├── step5.jsx │ ├── stepMerge4Aand4B.jsx │ └── taskTest.jsx └── src │ ├── clientSide │ ├── AnimCharacter.d.ts │ ├── AnimationState.d.ts │ ├── ArmMiniGame.ts │ ├── Baton.d.ts │ ├── Characters.d.ts │ ├── FullScreenAnimation.ts │ ├── LifeGame.ts │ ├── MouseOrTouchInput.d.ts │ ├── README.md │ ├── SnowFlake.d.ts │ ├── Wall.ts │ ├── Walls.d.ts │ ├── animatedCharacters.ts │ ├── animationDirector.ts │ ├── batonState.ts │ ├── fontemonTest.ts │ ├── guy1.ts │ ├── guy2.ts │ ├── guy3.ts │ ├── guy4.ts │ ├── guy5.ts │ ├── guy6.ts │ ├── guy6Crowd.ts │ ├── makeAnimationCanvas.ts │ ├── nextArmGrowthState.ts │ ├── runLife.ts │ ├── snowFlakes.ts │ └── tsconfig.json │ ├── commonDeclarations │ ├── LifeIds.d.ts │ ├── README.md │ ├── SnowBoxClass.d.ts │ └── WallId.d.ts │ ├── fileGenerators │ ├── 404HTML.tsx │ ├── ArmMiniGameJS.ts │ ├── ArmMinigameHTML.tsx │ ├── Examples.tsx │ ├── Fontemon.tsx │ ├── GettingStartedHtml.tsx │ ├── IndexHtml.tsx │ ├── Maintainer.tsx │ ├── Navigation.tsx │ ├── PrivacyPolicy.tsx │ ├── TermsHtml.tsx │ ├── animationJS.ts │ ├── lib │ │ ├── Animation.tsx │ │ ├── AreYouAMaintainer.tsx │ │ ├── CodeBox.tsx │ │ ├── CodeBoxColumn.tsx │ │ ├── CodeBoxOutput.tsx │ │ ├── CodeExample.tsx │ │ ├── CodeExampleWithOutput.tsx │ │ ├── Diagram.tsx │ │ ├── Example1.tsx │ │ ├── Example2.tsx │ │ ├── ExampleStep.tsx │ │ ├── FAQ.tsx │ │ ├── FileGenerator.ts │ │ ├── FontKid.tsx │ │ ├── Goal.tsx │ │ ├── Header.tsx │ │ ├── HeaderOffsetAnchor.tsx │ │ ├── HighlightedCode.tsx │ │ ├── HighlightedCodeExampleDiff.tsx │ │ ├── HorizontalDivider.tsx │ │ ├── Life.tsx │ │ ├── MultiCodeExample.tsx │ │ ├── MultiCodeExampleWithOutput.tsx │ │ ├── MultiHighlightCode.tsx │ │ ├── Page.tsx │ │ ├── Prism.ts │ │ ├── PrivacyDisclaimer.tsx │ │ ├── QA.tsx │ │ ├── Snow.tsx │ │ ├── SplashImage.tsx │ │ ├── SpriteSheetPNGImage.tsx │ │ ├── StartInstructions.tsx │ │ ├── StartNow.tsx │ │ ├── TitleImage.tsx │ │ ├── WhatIsIt.tsx │ │ ├── WorkingCodeExamples.tsx │ │ ├── clientSideJavascript.ts │ │ ├── commonCss.ts │ │ ├── contributeEmailAddress.ts │ │ ├── contributeMail.ts │ │ ├── contributeMailHref.ts │ │ ├── contributeSubject.ts │ │ ├── directories.ts │ │ ├── faqId.ts │ │ ├── fileNames.ts │ │ ├── generate.tsx │ │ ├── generateAll.ts │ │ ├── generatedJavascriptFileMessage.ts │ │ ├── generationPath.ts │ │ ├── getAllFileGenerators.ts │ │ ├── grabStyle.tsx │ │ ├── highlightCodeExample.ts │ │ ├── highlightCodeExampleDiff.ts │ │ ├── howDoesItWorkId.ts │ │ ├── html.ts │ │ ├── includeCode.ts │ │ ├── links.ts │ │ ├── questionMailHref.ts │ │ ├── siteConstants.ts │ │ └── whyId.ts │ └── tsconfig.json │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | www.coderelay.io -------------------------------------------------------------------------------- /docs/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/animation.js -------------------------------------------------------------------------------- /docs/arm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/arm.html -------------------------------------------------------------------------------- /docs/armMiniGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/armMiniGame.js -------------------------------------------------------------------------------- /docs/assets/anim/guy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy1.png -------------------------------------------------------------------------------- /docs/assets/anim/guy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy2.png -------------------------------------------------------------------------------- /docs/assets/anim/guy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy3.png -------------------------------------------------------------------------------- /docs/assets/anim/guy4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy4.png -------------------------------------------------------------------------------- /docs/assets/anim/guy5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy5.png -------------------------------------------------------------------------------- /docs/assets/anim/guy6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy6.png -------------------------------------------------------------------------------- /docs/assets/anim/guy6Crowd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/anim/guy6Crowd.png -------------------------------------------------------------------------------- /docs/assets/codeEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/codeEditor.png -------------------------------------------------------------------------------- /docs/assets/fontemon.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/fontemon.otf -------------------------------------------------------------------------------- /docs/assets/fontemonLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/fontemonLogo.png -------------------------------------------------------------------------------- /docs/assets/fontkid0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/fontkid0001.png -------------------------------------------------------------------------------- /docs/assets/image_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/image_editor.png -------------------------------------------------------------------------------- /docs/assets/mp4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/mp4.mp4 -------------------------------------------------------------------------------- /docs/assets/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/snip.png -------------------------------------------------------------------------------- /docs/assets/webTitle0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/webTitle0001.png -------------------------------------------------------------------------------- /docs/assets/webm.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/assets/webm.webm -------------------------------------------------------------------------------- /docs/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/examples.html -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/fontemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/fontemon.html -------------------------------------------------------------------------------- /docs/gettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/gettingStarted.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/maintainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/maintainer.html -------------------------------------------------------------------------------- /docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/navigation.html -------------------------------------------------------------------------------- /docs/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/privacy.html -------------------------------------------------------------------------------- /docs/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/docs/terms.html -------------------------------------------------------------------------------- /gulp/DevelopmentServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/DevelopmentServer.ts -------------------------------------------------------------------------------- /gulp/compileClientSideTypescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/compileClientSideTypescript.ts -------------------------------------------------------------------------------- /gulp/compileGenerationTypescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/compileGenerationTypescript.ts -------------------------------------------------------------------------------- /gulp/directories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/directories.ts -------------------------------------------------------------------------------- /gulp/generateFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/generateFiles.ts -------------------------------------------------------------------------------- /gulp/livereload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/livereload.ts -------------------------------------------------------------------------------- /gulp/runDevelopmentHTTPServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/runDevelopmentHTTPServer.ts -------------------------------------------------------------------------------- /gulp/watchClientSideTypescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/watchClientSideTypescript.ts -------------------------------------------------------------------------------- /gulp/watchCodeExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/watchCodeExamples.ts -------------------------------------------------------------------------------- /gulp/watchGenerationTypescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/watchGenerationTypescript.ts -------------------------------------------------------------------------------- /gulp/watchJavascriptForGeneration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulp/watchJavascriptForGeneration.ts -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /markdown/HowIDidIt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/HowIDidIt.md -------------------------------------------------------------------------------- /markdown/Secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/Secrets.md -------------------------------------------------------------------------------- /markdown/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/Tutorial.md -------------------------------------------------------------------------------- /markdown/fontemon_credits/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/fontemon_credits/Readme.md -------------------------------------------------------------------------------- /markdown/fontemon_credits/art_by_artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/fontemon_credits/art_by_artist.json -------------------------------------------------------------------------------- /markdown/fontemon_credits/art_by_file_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/fontemon_credits/art_by_file_name.json -------------------------------------------------------------------------------- /markdown/how/converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/converter.png -------------------------------------------------------------------------------- /markdown/how/dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/dependency.png -------------------------------------------------------------------------------- /markdown/how/draw1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/draw1.png -------------------------------------------------------------------------------- /markdown/how/draw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/draw2.png -------------------------------------------------------------------------------- /markdown/how/fge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/fge1.png -------------------------------------------------------------------------------- /markdown/how/glyph00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/glyph00000.png -------------------------------------------------------------------------------- /markdown/how/glyph00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/glyph00001.png -------------------------------------------------------------------------------- /markdown/how/glyph00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/glyph00002.png -------------------------------------------------------------------------------- /markdown/how/good_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/good_colors.png -------------------------------------------------------------------------------- /markdown/how/ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/ligatures.png -------------------------------------------------------------------------------- /markdown/how/logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/logic.png -------------------------------------------------------------------------------- /markdown/how/node_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/node_tree.png -------------------------------------------------------------------------------- /markdown/how/node_tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/node_tree2.png -------------------------------------------------------------------------------- /markdown/how/node_tree3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/node_tree3.png -------------------------------------------------------------------------------- /markdown/how/password_branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/password_branching.png -------------------------------------------------------------------------------- /markdown/how/pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/pixels.png -------------------------------------------------------------------------------- /markdown/how/pixels_checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/pixels_checker.png -------------------------------------------------------------------------------- /markdown/how/test_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/test_1.png -------------------------------------------------------------------------------- /markdown/how/textPreviewTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/how/textPreviewTool.png -------------------------------------------------------------------------------- /markdown/tutorial/LoadAnimatedImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/LoadAnimatedImages.png -------------------------------------------------------------------------------- /markdown/tutorial/add_animation_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_animation_button.png -------------------------------------------------------------------------------- /markdown/tutorial/add_condition_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_condition_node.png -------------------------------------------------------------------------------- /markdown/tutorial/add_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_empty.png -------------------------------------------------------------------------------- /markdown/tutorial/add_end_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_end_node.png -------------------------------------------------------------------------------- /markdown/tutorial/add_first_scene_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_first_scene_node.png -------------------------------------------------------------------------------- /markdown/tutorial/add_image_home_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_image_home_base.png -------------------------------------------------------------------------------- /markdown/tutorial/add_image_to_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_image_to_empty.png -------------------------------------------------------------------------------- /markdown/tutorial/add_parent_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_parent_button.png -------------------------------------------------------------------------------- /markdown/tutorial/add_plain_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/add_plain_axes.png -------------------------------------------------------------------------------- /markdown/tutorial/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/addons.png -------------------------------------------------------------------------------- /markdown/tutorial/animate_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/animate_select_all.png -------------------------------------------------------------------------------- /markdown/tutorial/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/arrows.png -------------------------------------------------------------------------------- /markdown/tutorial/autokey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/autokey.png -------------------------------------------------------------------------------- /markdown/tutorial/bad_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/bad_loop.png -------------------------------------------------------------------------------- /markdown/tutorial/bad_lost_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/bad_lost_scene.png -------------------------------------------------------------------------------- /markdown/tutorial/convert_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/convert_done.png -------------------------------------------------------------------------------- /markdown/tutorial/convert_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/convert_save.png -------------------------------------------------------------------------------- /markdown/tutorial/converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/converter.png -------------------------------------------------------------------------------- /markdown/tutorial/converter_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/converter_tool.png -------------------------------------------------------------------------------- /markdown/tutorial/create_text_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/create_text_button.png -------------------------------------------------------------------------------- /markdown/tutorial/empty_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/empty_layout.png -------------------------------------------------------------------------------- /markdown/tutorial/empty_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/empty_selected.png -------------------------------------------------------------------------------- /markdown/tutorial/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/enable.png -------------------------------------------------------------------------------- /markdown/tutorial/end_scene_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/end_scene_node.png -------------------------------------------------------------------------------- /markdown/tutorial/exampe_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/exampe_branch.png -------------------------------------------------------------------------------- /markdown/tutorial/export_scene_tree_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/export_scene_tree_info.png -------------------------------------------------------------------------------- /markdown/tutorial/export_to_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/export_to_font.png -------------------------------------------------------------------------------- /markdown/tutorial/first_scene_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/first_scene_node.png -------------------------------------------------------------------------------- /markdown/tutorial/first_scene_node_assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/first_scene_node_assign.png -------------------------------------------------------------------------------- /markdown/tutorial/first_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/first_tree.png -------------------------------------------------------------------------------- /markdown/tutorial/full_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/full_copy.png -------------------------------------------------------------------------------- /markdown/tutorial/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/install.png -------------------------------------------------------------------------------- /markdown/tutorial/jump_to_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/jump_to_scene.png -------------------------------------------------------------------------------- /markdown/tutorial/lost_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/lost_example.png -------------------------------------------------------------------------------- /markdown/tutorial/new_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/new_scene.png -------------------------------------------------------------------------------- /markdown/tutorial/notice_object_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/notice_object_change.png -------------------------------------------------------------------------------- /markdown/tutorial/open_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/open_file.png -------------------------------------------------------------------------------- /markdown/tutorial/play_twice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/play_twice.png -------------------------------------------------------------------------------- /markdown/tutorial/powershell_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/powershell_here.png -------------------------------------------------------------------------------- /markdown/tutorial/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/preferences.png -------------------------------------------------------------------------------- /markdown/tutorial/rotate_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/rotate_90.png -------------------------------------------------------------------------------- /markdown/tutorial/saved_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/saved_message.png -------------------------------------------------------------------------------- /markdown/tutorial/scene_tree_workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/scene_tree_workspace.png -------------------------------------------------------------------------------- /markdown/tutorial/scrub_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/scrub_time.png -------------------------------------------------------------------------------- /markdown/tutorial/second_scene_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/second_scene_node.png -------------------------------------------------------------------------------- /markdown/tutorial/second_scene_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/second_scene_rename.png -------------------------------------------------------------------------------- /markdown/tutorial/see_snock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/see_snock.png -------------------------------------------------------------------------------- /markdown/tutorial/see_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/see_sprite.png -------------------------------------------------------------------------------- /markdown/tutorial/select_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/select_parent.png -------------------------------------------------------------------------------- /markdown/tutorial/slot_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/slot_example_1.png -------------------------------------------------------------------------------- /markdown/tutorial/slot_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/slot_properties.png -------------------------------------------------------------------------------- /markdown/tutorial/slots_node_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/slots_node_tree.png -------------------------------------------------------------------------------- /markdown/tutorial/slots_node_tree_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/slots_node_tree_good.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/artByArtist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/artByArtist.json -------------------------------------------------------------------------------- /markdown/tutorial/sprites/charStrings/whisp_fire00.charstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/charStrings/whisp_fire00.charstring -------------------------------------------------------------------------------- /markdown/tutorial/sprites/charStrings/whisp_fire01.charstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/charStrings/whisp_fire01.charstring -------------------------------------------------------------------------------- /markdown/tutorial/sprites/charStrings/whisp_fire02.charstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/charStrings/whisp_fire02.charstring -------------------------------------------------------------------------------- /markdown/tutorial/sprites/charStrings/whisp_fire03.charstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/charStrings/whisp_fire03.charstring -------------------------------------------------------------------------------- /markdown/tutorial/sprites/charStrings/whisp_fire04.charstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/charStrings/whisp_fire04.charstring -------------------------------------------------------------------------------- /markdown/tutorial/sprites/credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/credits.json -------------------------------------------------------------------------------- /markdown/tutorial/sprites/snock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/snock.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/whisp_fire00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/whisp_fire00.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/whisp_fire01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/whisp_fire01.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/whisp_fire02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/whisp_fire02.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/whisp_fire03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/whisp_fire03.png -------------------------------------------------------------------------------- /markdown/tutorial/sprites/whisp_fire04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/sprites/whisp_fire04.png -------------------------------------------------------------------------------- /markdown/tutorial/switch_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/switch_scenes.png -------------------------------------------------------------------------------- /markdown/tutorial/switch_to_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/switch_to_layout.png -------------------------------------------------------------------------------- /markdown/tutorial/test_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/test_1.png -------------------------------------------------------------------------------- /markdown/tutorial/test_font_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/test_font_button.png -------------------------------------------------------------------------------- /markdown/tutorial/textPreviewTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/textPreviewTool.png -------------------------------------------------------------------------------- /markdown/tutorial/text_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/text_example.png -------------------------------------------------------------------------------- /markdown/tutorial/text_preview_tool_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/text_preview_tool_button.png -------------------------------------------------------------------------------- /markdown/tutorial/time_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/time_end.png -------------------------------------------------------------------------------- /markdown/tutorial/time_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/time_type.png -------------------------------------------------------------------------------- /markdown/tutorial/transform_output_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/transform_output_button.png -------------------------------------------------------------------------------- /markdown/tutorial/tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/tree2.png -------------------------------------------------------------------------------- /markdown/tutorial/tree3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/tree3.png -------------------------------------------------------------------------------- /markdown/tutorial/visible_animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/visible_animation.png -------------------------------------------------------------------------------- /markdown/tutorial/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/markdown/tutorial/zip.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/codeExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/README.md -------------------------------------------------------------------------------- /scripts/codeExamples/madeWithCodeRelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/madeWithCodeRelay.html -------------------------------------------------------------------------------- /scripts/codeExamples/notFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/notFound.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/quickExample1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/quickExample1.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/quickExample2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/quickExample2.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/spin4B1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/spin4B1.css -------------------------------------------------------------------------------- /scripts/codeExamples/spin4B2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/spin4B2.css -------------------------------------------------------------------------------- /scripts/codeExamples/step2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/step2.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/step3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/step3.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/step4A.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/step4A.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/step4B.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/step4B.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/step5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/step5.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/stepMerge4Aand4B.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/codeExamples/stepMerge4Aand4B.jsx -------------------------------------------------------------------------------- /scripts/codeExamples/taskTest.jsx: -------------------------------------------------------------------------------- 1 | do { 2 | // 3 | } while (task_is_not_yet_complete); 4 | -------------------------------------------------------------------------------- /scripts/src/clientSide/AnimCharacter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/AnimCharacter.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/AnimationState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/AnimationState.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/ArmMiniGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/ArmMiniGame.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/Baton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/Baton.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/Characters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/Characters.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/FullScreenAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/FullScreenAnimation.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/LifeGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/LifeGame.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/MouseOrTouchInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/MouseOrTouchInput.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/README.md -------------------------------------------------------------------------------- /scripts/src/clientSide/SnowFlake.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/SnowFlake.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/Wall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/Wall.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/Walls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/Walls.d.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/animatedCharacters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/animatedCharacters.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/animationDirector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/animationDirector.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/batonState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/batonState.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/fontemonTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/fontemonTest.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy1.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy2.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy3.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy4.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy5.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy6.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/guy6Crowd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/guy6Crowd.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/makeAnimationCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/makeAnimationCanvas.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/nextArmGrowthState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/nextArmGrowthState.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/runLife.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/runLife.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/snowFlakes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/snowFlakes.ts -------------------------------------------------------------------------------- /scripts/src/clientSide/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/clientSide/tsconfig.json -------------------------------------------------------------------------------- /scripts/src/commonDeclarations/LifeIds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/commonDeclarations/LifeIds.d.ts -------------------------------------------------------------------------------- /scripts/src/commonDeclarations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/commonDeclarations/README.md -------------------------------------------------------------------------------- /scripts/src/commonDeclarations/SnowBoxClass.d.ts: -------------------------------------------------------------------------------- 1 | type SnowBoxClass = "snow-box" -------------------------------------------------------------------------------- /scripts/src/commonDeclarations/WallId.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/commonDeclarations/WallId.d.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/404HTML.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/404HTML.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/ArmMiniGameJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/ArmMiniGameJS.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/ArmMinigameHTML.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/ArmMinigameHTML.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/Examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/Examples.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/Fontemon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/Fontemon.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/GettingStartedHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/GettingStartedHtml.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/IndexHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/IndexHtml.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/Maintainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/Maintainer.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/Navigation.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/TermsHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/TermsHtml.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/animationJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/animationJS.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Animation.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/AreYouAMaintainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/AreYouAMaintainer.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/CodeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/CodeBox.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/CodeBoxColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/CodeBoxColumn.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/CodeBoxOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/CodeBoxOutput.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/CodeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/CodeExample.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/CodeExampleWithOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/CodeExampleWithOutput.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Diagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Diagram.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Example1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Example1.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Example2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Example2.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/ExampleStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/ExampleStep.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/FAQ.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/FileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/FileGenerator.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/FontKid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/FontKid.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Goal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Goal.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Header.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/HeaderOffsetAnchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/HeaderOffsetAnchor.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/HighlightedCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/HighlightedCode.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/HighlightedCodeExampleDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/HighlightedCodeExampleDiff.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/HorizontalDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/HorizontalDivider.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Life.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Life.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/MultiCodeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/MultiCodeExample.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/MultiCodeExampleWithOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/MultiCodeExampleWithOutput.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/MultiHighlightCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/MultiHighlightCode.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Page.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Prism.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/PrivacyDisclaimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/PrivacyDisclaimer.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/QA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/QA.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/Snow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/Snow.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/SplashImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/SplashImage.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/SpriteSheetPNGImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/SpriteSheetPNGImage.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/StartInstructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/StartInstructions.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/StartNow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/StartNow.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/TitleImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/TitleImage.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/WhatIsIt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/WhatIsIt.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/WorkingCodeExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/WorkingCodeExamples.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/clientSideJavascript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/clientSideJavascript.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/commonCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/commonCss.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/contributeEmailAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/contributeEmailAddress.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/contributeMail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/contributeMail.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/contributeMailHref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/contributeMailHref.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/contributeSubject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/contributeSubject.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/directories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/directories.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/faqId.ts: -------------------------------------------------------------------------------- 1 | 2 | export const faqId = "faq"; 3 | -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/fileNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/fileNames.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/generate.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/generateAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/generateAll.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/generatedJavascriptFileMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/generatedJavascriptFileMessage.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/generationPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/generationPath.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/getAllFileGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/getAllFileGenerators.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/grabStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/grabStyle.tsx -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/highlightCodeExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/highlightCodeExample.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/highlightCodeExampleDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/highlightCodeExampleDiff.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/howDoesItWorkId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/howDoesItWorkId.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/html.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/includeCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/includeCode.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/lib/links.ts -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/questionMailHref.ts: -------------------------------------------------------------------------------- 1 | export const questionMailHref = `mailto:mike@coderelay.io`; 2 | -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/siteConstants.ts: -------------------------------------------------------------------------------- 1 | export const pageBackgroundColor = `#263238`; -------------------------------------------------------------------------------- /scripts/src/fileGenerators/lib/whyId.ts: -------------------------------------------------------------------------------- 1 | export const whyId = "Why"; 2 | -------------------------------------------------------------------------------- /scripts/src/fileGenerators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/fileGenerators/tsconfig.json -------------------------------------------------------------------------------- /scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/scripts/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/code-relay/HEAD/tsconfig.json --------------------------------------------------------------------------------