
•You can override a function in an inheriting object by pressing Alt V. The overridden function will be executed even if it is called with a reference or allocator of the parent object.
•You can create an abstract function by pressing Alt B. You cannot write content in an abstract function, and if there is an abstract function, the object becomes a virtual object and cannot be created. If another object inherits a virtual object, you must override all abstract functions before you can create it. Abstract functions that have not overridden are displayed at the top.
•You can disable overriding by pressing Alt Z.
•When using a function, you can press the Tap key to select and use one of the overridden functions.