Taro is an Entity Component System (ECS) engine for web applications, built with three.js and cannon-es. Programming with an ECS can result in code that is more efficient and easier to extend over time.
Some common terms within Taro are:
Before you can use taro.js, you need somewhere to display it:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My first taro.js app</title>
<style>
body { margin: 0; }
</style>
</head>
<body>
<script src="js/taro.js"></script>
<script>
// Our Javascript will go here.
</script>
</body>
</html>
Let’s start creating our first app and add the element to our HTML document:
var app = new TARO.App();
document.body.appendChild( app.domElement );
Components are objects that hold data and functions. We can use any way to define them, for example using ES6 class syntax (recommended):
class CubeController {
init() {
// fires when the component is attached to an entity
this.rotation = this.entity.rotation;
}
update() {
// fires once per frame
this.rotation.x += 0.01;
this.rotation.y += 0.01;
}
}
Then we need to register components to use them.
TARO.registerComponent('cubeController', CubeController);
More info on how to create components.
Having our world and some components already defined, let’s create entities and attach these components to them:
var cube = new TARO.Entity('cube');
cube.addComponent('material', { color: 0x00ff00 });
cube.addComponent('geometry', { type: 'box' });
cube.addComponent('cubeController');
var camera = new TARO.Entity('camera');
camera.position.z = 5;
camera.addComponent('camera');
With that, we have just created 2 entities: one with the Material, Geometry and CubeController components, and another with just the Camera component. Notice that the Geometry and Material components are added with parameter objects. If we didn't use the parameters then the components would use the default values declared in their schemas.
Now you just need to invoke app.start(), and the app will begin automatically updating every frame:
app.start();
Congratulations! You have now completed your first taro.js application. It’s simple, you have to start somewhere.
The full code is available below and as an editable live example. Play around with it to get a better understanding of how it works.