So I want to have kinda like a summoned weapon and you can only have once at a time. How can I force C2 to just spawn another object if it currently doesnt exist, on in an extreme case, delete the old one in order to summon a new one.
Thank you
Develop games in your browser. Powerful, performant & highly capable.
sprite.count expression should help you; if sprite.count=0 then create sprite else destroy sprite and create a new one
Thanks! Always good to learn new stuff