How do i put content above fire ?
To position the fire to a specific layer, follow this steps:
- create a new layer called “fireLevel”
- on “fireLevel” create and empty mc, at position 0,0 and give it an instance name: “fireHolder”
- modify AS code on first frame from
var mFire = fire.create(this,{width:590,height:300})
// to
var mFire = fire.create(fireHolder,{width:590,height:300})
(AS3 version)
addChild(mFire) //to fireHolder.addChild(mFire)now you should have fire sticking on level fireLevel

636 Purchases
40 Comments