Drag the background!

Search JS code (of Worlds)

Search JavaScript code of all Worlds for: keycode


Enhanced Space Pong
1014 runs ♦ 0 likes
By Enhanced  
Created: 18 Jun 2018
Modified: 17 Sep 2023
It's all you want from Pong : smooth controls, different difficulty levels and game modes
if (e.keyCode == 37) player.movement = -1;
if (e.keyCode == 39) player.movement = 1;
if (e.keyCode == 37 && player.movement == -1) player.movement = 0;
else if (e.keyCode == 39 && player.movement == 1) player.movement = 0;
Gatekeeper
321 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) {
Zombie Death Baby
771 runs ♦ 1 like
By Starter user  
Created: 11 Jun 2018
Modified: 17 Sep 2023
How to make a fun touch game for mobile. Touch drag and tap objects. Mouse drag and click object...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) moveAgent ( ACTION_LEFT );
if ( event.keyCode == 38 ) moveAgent ( ACTION_DOWN );
if ( event.keyCode == 39 ) moveAgent ( ACTION_RIGHT );
if ( event.keyCode == 40 ) moveAgent ( ACTION_UP );
Cook A Long
269 runs ♦ 1 like
By Joseph Adeosun  
Created: 3 Dec 2022
Modified: 17 Sep 2023
Attempted port of "Chicken Alfredo Cooking Game" by Emily Cerequas and Jenny Kowalski. https://q...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Game of Crowns
2270 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(); }
Battleship
4277 runs ♦ 2 likes
By Aaron Crawford  
Created: 30 Oct 2022
Modified: 17 Sep 2023
if (e.keyCode == '38')
else if (e.keyCode == '40')
else if (e.keyCode == '37')
else if (e.keyCode == '39')
else if (e.keyCode == '13')
Minecraft Builder
273 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(); }
Websocket chat
886 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(); };
Election - AI Ve...
1964 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);
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) {
Don't Move
1323 runs ♦ 2 likes
By Finnian O'Neill  
Created: 6 Dec 2016
Modified: 17 Sep 2023
var code = event.keyCode;
Infinite World O...
97 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 ) {
Complex World
8222 runs ♦ 5 likes
By Starter user  
Created: 1 Oct 2016
Modified: 17 Sep 2023
World with a Mind-controlled agent, actively-pursuing enemy, random maze, skybox, music.
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 );
Chat with GPT model
627 runs ♦ 3 likes
By Starter user  
Created: 18 Sep 2023
Modified: 3 Oct 2023
JavaScript page to chat with a GPT model. Calls OpenAI API. User needs to enter API key.
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(); };
Bomberman
294 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)
Romantic Sunset
219 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 ) {
Lion Chase
435 runs ♦ 0 likes
By Martin Derwin  
Created: 30 Nov 2022
Modified: 17 Sep 2023
Don't get caught by the lions
return(OURKEYS.includes(event.keyCode));
if(event.keyCode == KEY_A) sendData(KEY_A, 2);
if(event.keyCode == KEY_W) sendData(KEY_W, 2);
if(event.keyCode == KEY_D) sendData(KEY_D, 2);
if(event.keyCode == KEY_LEFT)
Game of Crowns s...
210 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(); }
DALL-E Speech Ga...
292 runs ♦ 0 likes
By spandana  
Created: 23 Nov 2023
Modified: 11 Feb 2024
Text to image to caption to audio, with DALL-E and Azure. (1) User enters prompt. Calls DALL-E ...
if (event.keyCode == 13){
Infinite story book
404 runs ♦ 0 likes
By Darragh McG  
Created: 29 Nov 2023
Modified: 16 Feb 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) {
Pacman In Space
1709 runs ♦ 0 likes
By Simon Lowry  
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 );
Enhanced Don't Move
161 runs ♦ 0 likes
By Enhanced  
Created: 12 Jun 2018
Modified: 17 Sep 2023
Try to dodge cubes as they fall to the ground, in this simple but efficient game
var code = event.keyCode;
Spider Paradise ...
763 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 );
Space Plane Shooter
823 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
Landmark Museum
124 runs ♦ 0 likes
By Christopher Dobey  
Created: 4 Dec 2023
Modified: 4 Feb 2024
A walkthrough tour of the most significant landmarks in any given country. Three.js 3D World wit...
switch ( event.keyCode ) {
switch( event.keyCode ) {
First Person Con...
212 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 ) {
AIRecipe
61 runs ♦ 0 likes
By Alex Petrash  
Created: 1 Dec 2023
Modified: 5 Feb 2024
User enters the name of a dish. Display list of ingredients, recipe and an image. Uses two API c...
if (event.keyCode == 13) {
Touch World
457 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 );
FLESHMAN PLAYS G...
4607 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
AI Art Gallery
59 runs ♦ 0 likes
By Jamie Gorman  
Created: 21 Nov 2023
Modified: 2 Feb 2024
Art Gallery with AI generated images and background music. Calls image generation API from Repli...
switch (event.keyCode) {
switch (event.keyCode) {
Infinite World G...
146 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 ) {
Capture The Egg
133 runs ♦ 0 likes
By tuitef2  
Created: 8 Mar 2019
Modified: 17 Sep 2023
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
3D Platform Game
237 runs ♦ 0 likes
By Ronghui  
Created: 5 Dec 2022
Modified: 17 Sep 2023
Race to the End! WASD to move.
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
Looney Tunes Cha...
1434 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)
Interstellar cubes
618 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
3D Snake
622 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){
Design Your Own ...
4413 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)
escape...
800 runs ♦ 2 likes
By Jon Bryan Ortiz  
Created: 22 Nov 2022
Modified: 17 Sep 2023
There are 10 pages scattered around the map. First person to find all 10 pages escapes...the res...
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
Run Run Run!
5692 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') {


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.