diff --git a/flashmaths/default_env.tres b/flashmaths/default_env.tres new file mode 100644 index 0000000..20207a4 --- /dev/null +++ b/flashmaths/default_env.tres @@ -0,0 +1,7 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) diff --git a/flashmaths/icon.png b/flashmaths/icon.png new file mode 100644 index 0000000..c98fbb6 Binary files /dev/null and b/flashmaths/icon.png differ diff --git a/flashmaths/icon.png.import b/flashmaths/icon.png.import new file mode 100644 index 0000000..a4c02e6 --- /dev/null +++ b/flashmaths/icon.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/flashmaths/notes/main_ideas.md b/flashmaths/notes/main_ideas.md new file mode 100644 index 0000000..985342d --- /dev/null +++ b/flashmaths/notes/main_ideas.md @@ -0,0 +1,22 @@ +# FlashMaths (FlitsReken) + +## Core premise + +1. Nice, graphic & animated approach to Maths flashcards. +2. One question per card +3. Six MC answers (one correct, auto-change the other 5) +4. Randomise everything +5. 10 Minute timer running so you can score as many points as you want / can +6. Something grows/happens as you score points (you either see a bar fill up, or some silly random thing happen) +7. If you finish a pack, you return to the pack-selection screen +8. Choose what percentage you want to get right on a pack before you score it as "complete" +9. Colourful, yet neutral, child-friendly! +10. ASN friendly +11. Multilingual +12. Allow for keyboard shortcuts + +## Different versions + +1. Build out the web version first +2. Local, user version will allow persistent data storage. +3. This brings with it the option to develop an algorithm for spaced repetition (similar to Anki) \ No newline at end of file diff --git a/flashmaths/project.godot b/flashmaths/project.godot new file mode 100644 index 0000000..9b34eeb --- /dev/null +++ b/flashmaths/project.godot @@ -0,0 +1,26 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=4 + +[application] + +config/name="FlashMaths" +config/icon="res://icon.png" + +[gui] + +common/drop_mouse_on_gui_input_disabled=true + +[physics] + +common/enable_pause_aware_picking=true + +[rendering] + +environment/default_environment="res://default_env.tres" diff --git a/flashmaths/start_scene.tscn b/flashmaths/start_scene.tscn new file mode 100644 index 0000000..53068dc --- /dev/null +++ b/flashmaths/start_scene.tscn @@ -0,0 +1,3 @@ +[gd_scene format=2] + +[node name="StartScreen" type="CanvasLayer"]