A library that helps you simply create arcade game using few lines. Purpose of project Ne is to make children interested in coding.
You can try your code online: https://ne.etilk.com/
varnextRoom=newRoom();nextRoom.addItem(Items.angryRobot());nextRoom.addItem(Items.helper());nextRoom.addItem(Items.bonus());mainRoom.addRoom(nextRoom,Direction.LEFT);varleftRoom=mainRoom.newLeftRoom(80);varupRoom=mainRoom.newUpRoom(60);varthirdRoom=leftRoom.newUpRoom(40);thirdRoom.addRoom(upRoom,Direction.RIGHT);mainRoom.addItem(newItem(0.05,0.05));mainRoom.addItem(newItem(0.05,0.05));mainRoom.addItem(newItem(0.05,0.05));leftRoom.addItem(newItem(0.05,0.05));leftRoom.addItem(newItem(0.05,0.05));thirdRoom.addItem(newItem(0.05,0.05));And your game is running.
- Code editor
- UI
- Interface
- Game
- Items
- GamePlay