Découvre le code avec l'Amstrad 464
Passion pour le jeu vidéo et la demoscene
Programmeur depuis 1999
(== VISUAL SCRIPTING)
// Create a new Entity
const entity = new pc.Entity();
// Add a new Camera Component with default values
entity.addComponent("camera");
// Add a new Model Component and add it to the Entity.
entity.addComponent("model", {
type: 'box',
});
// Add it to the Entity hierarchy
this.app.root.addChild(entity);
const Rotate = pc.createScript("rotate");
Rotate.attributes.add("speed", { type: "number", default: 10 });
Rotate.prototype.update = function (dt) {
this.entity.rotate(0, this.speed * dt, 0);
};
EX: OGAME, COOKIE CLICKER
Physics integrated
Français monsieur!
Microsoft
Simple et documenté
Énormément de fonctionnalité
Vieux comme le webGL
Enormément de ressource