Code viewer for World: New World (clone by nikita...

// Cloned by nikita goryachuk on 29 Nov 2022 from World "New World" by Octavian 
// Please leave this clone trail here.
 



AB.colck = 10;
AB.maxStep = 10000;
AB.screeshot = 100;

const background = "lightblue";

const ARMY = 100;

const objectsize = 500;

const MAXPOS = 2000;
const startRadius = MAXPOS * 1.5;
const maxRadius = MAXPOS * 5;

ABHandler.MaxCamPos = MAXPOS * 10;

ABWorld.drawCamera = false;

AB.drawcontrol = false;
	
	AB.world.newRun = function()
	{
		// Code for Three.js initial drawing of objects.
		// Should include one of:
	 	// ABWorld.init2d ( arguments ); 	
	 	// ABWorld.init3d ( arguments ); 	
	};


	AB.world.nextStep = function()		 
	{
		// Code for Three.js re-drawing of objects.  		
	};


	AB.world.endRun = function()
	{
	};