Can the constructer be called on anything else but on an object?
I guess what I really want to ask is:
Are those things created from Structs real, normal Objects?
(Don’t ask me why I didn’t ask that in the first place O.o Maybe I thought this way it was a more multi-purpose-question… o. )
__
Does that mean that when the Constructor is called, the system first creates some kind of "generic Object-Thingy" and then this Thing gets processed by the Constructor to imprint on it the traits of the Class/Struct it was called for?
The constructor itself doesn't build the object, but it is always called on any object as soon as it is created. This is similar to (but not the same as) the way Awake() is called on new gameobjects.
Note - an 'object' in object oriented programming is not the same as a 'GameObject' in Unity.
The constructor is implicitly called as part of the initialization of the object, after it has been allocated but before the object fully exists to be used by the next line of code. (Note that there can be more than one constructor for a particular class, and a constructor of each superclass of the object will already have been called before the subclass's constructor is called.)
If you want to write some code that decides what type of object to create, that code would have to go somewhere else. When it creates an object of the desired type, a constructor of that object will be called as a matter of course.