#just send the file

1 messages ยท Page 1 of 1 (latest)

heavy swan
glad inlet
#

This is not just the deck though

#

What deck am I supposed to look at

heavy swan
#

any customDeck does this

glad inlet
heavy swan
#

well yeah, it's after using the script:

function onObjectSpawn(object)
    if object.hasTag("Land") then
        object.alt_view_angle = Vector(180, 0, 90)
    end
end

function onObjectEnterContainer( container, object)
    object.alt_view_angle = Vector(0, 0, 0)
    print(object.alt_view_angle) --Display vector 000 correctly
end
#

I add the tag to the bottom deck's cards

glad inlet
#

oh wait I see now.

#

Change the onObjectEnterContainer to tryObjectEnterContainer and you;re good I think

heavy swan
#

aaaah letsgo, it works! also needed to add a return true, thanks a lot ๐Ÿ™‚

glad inlet