Sorry if this is a stupidly basic question, but I can’t find an explanation for it through Google. I’m guessing it’s because I lack the knowledge about the terminology to be able to put it in to Google to make it pop out an answer, but here it is.
In the operator_modal.py template script, I see the following near the top of the ModalOperator class first_mouse_x: IntProperty()
What is it? It looks like it might be a shorthand declaration of a method by having it copy some previously defined function, but there’s no def
keyword before it. I also thought it might be something along the lines of declaring methods as members/properties, but there’s no @Property annotation above it. What is the significance of this syntax?