get()
is more used for times when you don't necessarily know what kind of node you're working with so you don't cause crashes by accessing a property that doesn't exist. If you know what node you're working with your should either access the property itself using node.property
or if it is the node that the script is attached to: property
or self.property
(which calls the getter/setter).