1.0.1 • Published 7 years ago

playcanvas-of-type v1.0.1

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

Introduction

Adds a method to pc.Entity to return an array of components or scripts that match the search term suppllied

Installation

npm install --save playcanvas-of-type

Usage

import 'playcanvas-of-type'

...

//Get collision components
this.entity.ofType('collision').forEach(doSomething);

this.entity.ofType('myscript').forEach(script=>{
    script.method();
}); 
 

Requirements

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