Drag the background!

Search JS code (of Worlds)

Search JavaScript code of all Worlds for: keycode


Spider Paradise ...
766 runs ♦ 2 likes
By Aisling Casserly  
Created: 8 Dec 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
if (e.keyCode == 65) moveLogicalAgent ( JUMP_LEFT );
Minecraft Builder
281 runs ♦ 0 likes
By Enhanced  
Created: 5 Jun 2018
Modified: 17 Sep 2023
Build your own worlds. Enhanced version of the Minecraft starter world with added control and co...
if ( e.keyCode == leftInput ) { cursor.position.x += - objectsize ; e.preventDefault(); } // left
if ( e.keyCode == rightInput ) { cursor.position.x += + objectsize ; e.preventDefault(); } // right
if ( e.keyCode == forwardInput ) { cursor.position.z += - objectsize ; e.preventDefault(); } // forward
if ( e.keyCode == backwardInput ) { cursor.position.z += + objectsize ; e.preventDefault(); } // back
if ( e.keyCode == bottomInput ) { cursor.position.y += - objectsize ; e.preventDefault(); }
AI Art Gallery
63 runs ♦ 0 likes
By Jamie Gorman  
Created: 21 Nov 2023
Modified: 11 Sep 2024
Art Gallery with AI generated images and background music. Calls image generation API from Repli...
switch (event.keyCode) {
switch (event.keyCode) {
Pacman
294 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
Enhanced version of Game Pacman in Space, you need to collect all white bullet to end the game, ...
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
First Person Con...
216 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
First person view with mouse controls. Use WASD or Arrows to move, mouse to look around and spac...
switch ( event.keyCode ) {
switch( event.keyCode ) {
DALL-E Speech Ga...
292 runs ♦ 0 likes
By spandana  
Created: 23 Nov 2023
Modified: 11 Sep 2024
Text to image to caption to audio, with DALL-E and Azure. (1) User enters prompt. Calls DALL-E ...
if (event.keyCode == 13){
Landmark Museum
140 runs ♦ 0 likes
By Christopher Dobey  
Created: 4 Dec 2023
Modified: 29 Jul 2024
A walkthrough tour of the most significant landmarks in any given country. Three.js 3D World wit...
switch ( event.keyCode ) {
switch( event.keyCode ) {
Phaser Chaser
140 runs ♦ 0 likes
By Paul Bashford  
Created: 20 Aug 2023
Modified: 17 Sep 2023
You Have 60 Seconds to collect more stars than your opponent! If you are caught by the Chaser yo...
up: Phaser.Input.Keyboard.KeyCodes.W,
down: Phaser.Input.Keyboard.KeyCodes.S,
left: Phaser.Input.Keyboard.KeyCodes.A,
right: Phaser.Input.Keyboard.KeyCodes.D
Game of Crowns s...
214 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
Enhanced version of "Game of Crowns" by Niamh Byrne with better graphics and controls
var code = a.keyCode;
if (e.keyCode == 37) { moveLogicalAgent ( ACTION_LEFT ); e.preventDefault(); }
if (e.keyCode == 40) { moveLogicalAgent ( ACTION_DOWN ); e.preventDefault(); }
if (e.keyCode == 39) { moveLogicalAgent ( ACTION_RIGHT ); e.preventDefault(); }
if (e.keyCode == 38) { moveLogicalAgent ( ACTION_UP ); e.preventDefault(); }
The San Andreas ...
1024 runs ♦ 0 likes
By Effa  
Created: 1 Dec 2022
Modified: 17 Sep 2023
const me = document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
function ourKeys ( event ) { return ( KEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == KEY_UP ) // move a bit along angle we are facing
if ( event.keyCode == KEY_LEFT ) // rotate in place
if ( event.keyCode == KEY_RIGHT )
MineCraft
1129 runs ♦ 2 likes
By Starter user  
Created: 27 Nov 2016
Modified: 17 Sep 2023
Use keyboard to draw blocks like in MineCraft. Use arrow keys and PgUp, PgDn to draw. Can save w...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) theobject.position.x = cx - objectsize ; // left
if ( event.keyCode == 39 ) theobject.position.x = cx + objectsize ; // right
if ( event.keyCode == 38 ) theobject.position.z = cz - objectsize ; // forward
if ( event.keyCode == 40 ) theobject.position.z = cz + objectsize ; // back
Catch the flag
4352 runs ♦ 2 likes
By Meabh Horan  
Created: 16 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
if (e.keyCode == 32) moveLogicalAgent ( ACTION_JUMPFORWARD); //cheat code to jump
Competitive Hangman
427 runs ♦ 2 likes
By David Jusev  
Created: 5 Dec 2022
Modified: 17 Sep 2023
Play hangman against friends. Multi-user port of https://codingartistweb.com/2022/05/hangman-gam...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Text to 3D Graph...
191 runs ♦ 0 likes
By Antoine Podvin  
Created: 2 Dec 2023
Modified: 4 Feb 2024
Create 3D Graphics scenes from text instructions. Uses text instructions to call OpenAI GPT API ...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Final Pool
1173 runs ♦ 2 likes
By Ian Gilligan  
Created: 1 Mar 2019
Modified: 17 Sep 2023
Pool Predictor for CA326
function ourKeys(event) {return(OURKEYS.includes(event.keyCode));}
if ( event.keyCode == 49 ) {selectBall(0);}
else if ( event.keyCode == 50 ) {selectBall(1);}
else if ( event.keyCode == 51 ) {selectBall(2);}
else if ( event.keyCode == 52 ) {selectBall(3);}
Run Run Run!
5717 runs ♦ 3 likes
By Duarte Martinho  
Created: 15 Nov 2022
Modified: 17 Sep 2023
CA318 Project by Duarte Martinho and Rion Xheladini. Modified port of "Crossy Road" by Hunor Mar...
if (event.keyCode == '38' || event.keyCode == '87') {
else if (event.keyCode == '40' || event.keyCode == '83') {
else if (event.keyCode == '37' || event.keyCode == '65') {
else if (event.keyCode == '39' || event.keyCode == '68') {
else if (event.keyCode == '77') {
Shooting Range
400 runs ♦ 0 likes
By Enhanced  
Created: 13 Jun 2018
Modified: 17 Sep 2023
Shoot the ducks, feel the spirit of the hunt. Enhanced version of "Shooting Range (Space To Shoo...
if (e.keyCode == 37) moveLogicalAgent( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent( ACTION_UP );
if (e.keyCode == 32) // if the keycode is space.
3D Snake
628 runs ♦ 1 like
By przemek biel  
Created: 29 Nov 2022
Modified: 17 Sep 2023
snake eats apple nom nom but in 3D
switch (e.keyCode){
Game of Crowns
2341 runs ♦ 2 likes
By Niamh Byrne  
Created: 16 Nov 2016
Modified: 17 Sep 2023
var code = a.keyCode;
if (e.keyCode == 37) { moveLogicalAgent ( ACTION_LEFT ); e.preventDefault(); }
if (e.keyCode == 38) { moveLogicalAgent ( ACTION_DOWN ); e.preventDefault(); }
if (e.keyCode == 39) { moveLogicalAgent ( ACTION_RIGHT ); e.preventDefault(); }
if (e.keyCode == 40) { moveLogicalAgent ( ACTION_UP ); e.preventDefault(); }
Election - AI Ve...
1965 runs ♦ 3 likes
By Ross Franey  
Created: 22 Oct 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
if (e.keyCode == 32) ai = randomintAtoB(1,gridsize-2), aj = randomintAtoB(1,gridsize-2);
Design Your Own ...
4415 runs ♦ 0 likes
By Jack O'Connor  
Created: 18 Feb 2019
Modified: 17 Sep 2023
Design Your Own Room Escape Game
if (keyCode === LEFT_ARROW)
else if (keyCode === RIGHT_ARROW)
if (keyCode === DOWN_ARROW && deg == 360)
Globe Trotter
1482 runs ♦ 2 likes
By Laura Araviciute  
Created: 3 Dec 2016
Modified: 17 Sep 2023
var code = event.keyCode;
Rythm of the night
299 runs ♦ 0 likes
By Enhanced  
Created: 2 Aug 2018
Modified: 17 Sep 2023
A rythm game where you have to use the right inputs at the right time to progress from one level...
//it can take the values 38 to 41. The html keycode of the arrow keys goes
if (e.keyCode == 37 || e.keyCode == 38 || e.keyCode == 39 || e.keyCode == 40)
if (actionRequired !== undefined && e.keyCode == obstacles[actionRequired])
//by the keycode of that arrow)(70% of the time) either nothing (represented
Capture The Egg
134 runs ♦ 0 likes
By tuitef2  
Created: 8 Mar 2019
Modified: 17 Sep 2023
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
Infinite World O...
98 runs ♦ 0 likes
By Enhanced  
Created: 16 Aug 2018
Modified: 17 Sep 2023
Here is a code to get an infinite world that loop without object in it, without the sun
if((e.keyCode == 38) || (e.keyCode == 40))
if(e.keyCode == 37 || e.keyCode == 39)
if(e.keyCode == 37 || e.keyCode == 39)
switch ( event.keyCode ) {
switch( event.keyCode ) {
Space Plane Shooter
831 runs ♦ 2 likes
By Brian Kilduff  
Created: 26 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT ); //left arrow key
if (e.keyCode == 38 && jump1 == false) //up arrow key
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT ); //right arrow key
if (e.keyCode == 66) moveLogicalAgent ( ACTION_DOWN ); //"b"key
if (e.keyCode == 32) //speace bar key fires bullets
Romantic Sunset
224 runs ♦ 0 likes
By Enhanced  
Created: 17 Aug 2018
Modified: 17 Sep 2023
Turn your head and discover a eautiful scenery observable in first person mode.
switch ( event.keyCode ) {
switch( event.keyCode ) {
FLESHMAN PLAYS G...
4608 runs ♦ 2 likes
By Sean Hutchinson  
Created: 21 Oct 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) // left
if (e.keyCode == 39) // right
if (e.keyCode == 38) // down
if (e.keyCode == 40) // up
if (e.keyCode == 97) // numpad1 is putt
Infinite story book
407 runs ♦ 0 likes
By Darragh McG  
Created: 29 Nov 2023
Modified: 11 Sep 2024
Indefinite story book generation. Allows the user to automatically generate an illustrated short...
if (event.keyCode === 13 && !promptSubmitBtn.disabled) {
var code = e.which || e.keyCode;
if (event.keyCode === 13) {
Bomberman
300 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
Classic game of Bomberman, try to kill the ennemy with a bomb !
if (e.keyCode == 32)
if (e.keyCode == 37)
if (e.keyCode == 38)
if (e.keyCode == 39)
if (e.keyCode == 40)
Interstellar cubes
630 runs ♦ 3 likes
By Thomas Mc Cann  
Created: 16 Oct 2019
Modified: 17 Sep 2023
A journey into Interstellar space. Run and press F12 (in chrome) to view the console. Try left c...
var key = event.which || event.keyCode; // Use either which or keyCode, depending on browser support
Color Matcher
278 runs ♦ 0 likes
By Siri Nandipaty  
Created: 27 Nov 2023
Modified: 5 Feb 2024
Color ideas generator using the Cohere AI API: https://docs.cohere.com/reference/generate. (1) E...
if (event.keyCode === 13) {
Touch World
461 runs ♦ 1 like
By Starter user  
Created: 6 Jan 2018
Modified: 17 Sep 2023
How to override default touch handling. Mobile: Touch drag moves agent, touch pinch zooms camera...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) moveLogicalAgent ( ACTION_LEFT );
if ( event.keyCode == 38 ) moveLogicalAgent ( ACTION_DOWN );
if ( event.keyCode == 39 ) moveLogicalAgent ( ACTION_RIGHT );
if ( event.keyCode == 40 ) moveLogicalAgent ( ACTION_UP );
Gatekeeper
332 runs ♦ 0 likes
By Sam Murphy  
Created: 23 Nov 2023
Modified: 4 Feb 2024
A mysterious wizard is guarding a locked gate. Three.js 3D World with built-in API calls. Naviga...
// All keyboard stuff - Whats important here is the event.keyCode listeners which check for arrow keys for movement -> letter keys fo
// Array with keycodes for arrow keys, so we can quickly check if the input is one of them.
keyboard[event.keyCode] = true;
if (arrowKeys.includes(event.keyCode)) {
} else if (typeFlag === 1 && event.keyCode === 13) {
Infinite World G...
147 runs ♦ 0 likes
By Enhanced  
Created: 16 Aug 2018
Modified: 17 Sep 2023
Here is a code to get an infinite world that loop without object in it, and with the sun
if((e.keyCode == 38) || (e.keyCode == 40))
if(e.keyCode == 37 || e.keyCode == 39)
if(e.keyCode == 37 || e.keyCode == 39)
switch ( event.keyCode ) {
switch( event.keyCode ) {
Language Transla...
99 runs ♦ 0 likes
By Darius Beril  
Created: 7 Dec 2023
Modified: 8 Feb 2024
AI Language Translator And Reader. (1) Uses OpenAI GPT API for translation. Need to enter your o...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Websocket chat
981 runs ♦ 0 likes
By Starter user  
Created: 29 Feb 2020
Modified: 17 Sep 2023
Demo of Ancient Brain Websockets functionality. Run on multiple devices. Chat from one to the other.
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
User-controlled ...
940 runs ♦ 2 likes
By Starter user  
Created: 12 Feb 2017
Modified: 17 Sep 2023
3d model World. User controlled on desktop. Keyboard arrows to move. Switch to "Move with" camer...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == KEY_UP ) // move a bit along angle we are facing
if ( event.keyCode == KEY_LEFT ) // rotate in place
if ( event.keyCode == KEY_RIGHT )
Mighty Spread
334 runs ♦ 0 likes
By Gareth Hogan  
Created: 12 Nov 2022
Modified: 17 Sep 2023
CA318 Project
return(OURKEYS.includes(event.keyCode));
if(event.keyCode == 65) socketSender(ACTION_LEFT, 1);
if(event.keyCode == 87) socketSender(ACTION_DOWN, 1);
if(event.keyCode == 68) socketSender(ACTION_RIGHT, 1);
if(event.keyCode == 83) socketSender(ACTION_UP, 1);
Looney Tunes Cha...
1435 runs ♦ 2 likes
By Sean Sinnott  
Created: 16 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37)
if (e.keyCode == 38)
if (e.keyCode == 39)
if (e.keyCode == 40)
if (e.keyCode == 83)


The background is a program, showing the JavaScript graphics used on this site.
The globes light up when you log in.
 
Font:

Users retain ownership of user content.

Platforms      Stats      The name      Terms and conditions

Call for partners      Contact

Call for partners!
Ancient Brain is looking for a partner to co-write a JavaScript coding book for schools, to be used worldwide. This would be a course for students in learning to code from scratch. The book and course will be integrated into the Ancient Brain site. This is an opportunity for someone looking to develop a course and textbook to partner with a site to promote it. Read more.