mirror of
https://github.com/tiennm99/fbird.git
synced 2026-06-15 10:47:52 +00:00
17 lines
326 B
JavaScript
Vendored
17 lines
326 B
JavaScript
Vendored
|
|
gaf._MaskProto = function(asset, mask, idRef)
|
|
{
|
|
this.getIdRef = function(){return idRef};
|
|
this.getMaskNodeProto = function() {return mask};
|
|
|
|
/*
|
|
* Will construct GAFMask
|
|
*/
|
|
this._gafConstruct = function()
|
|
{
|
|
var ret = new gaf.Mask(this);
|
|
ret._init();
|
|
return ret;
|
|
};
|
|
};
|