1.0.0 • Published 7 years ago

playcanvas-vector-extensions v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

Introduction

Utility extensions to PlayCanvas pc.Vec3 that add chainable methods to set elements of the vector.

Installation

npm install --save playcanvas-vector-extensions

Usage

import 'playcanvas-vector-extensions'

...

//Get vector to enemy ignoring Y
this.vector.copy(this.enemy.getPosition()).Y(0).sub(this.entity.getPosition()); 
 

Supports X(value), Y(value) and Z(value) as well as addX(value), addY(value) and addZ(value)

Requirements

Requires PlayCanvas Engine to be running on the page. Uses ES6/Babel/PlayCanvas template.