|
Post by ravager on Dec 16, 2018 10:31:52 GMT
Hello everyone! I have a question about Package editor. What is the "Superclass" in following picture? Is it possible to change it?  Sorry if that was discussed earlyer somewhere, but I can't find any information about that. I'll be very grateful if someone can explain this to me, or give me a link where I can learn about it. Thanks everyone who read this.
|
|
|
Post by kinkojiro on Dec 18, 2018 7:14:58 GMT
Superclass is part of the unrealscript class system. A class inherits the functions and properties of its superclass. Then it can add new ones.
For example SFXPawn_playerAdept is a subclass of the superclass SFXPawn_Player so it can do all of the things a standard sfxpawn_player can do and extra things relating to its adept status.
Basically this enables unreal to create highly specialised object oriented code, which all start from basic objects, and inherit (reuse) code for basic properties.
|
|
|
Post by ravager on Jan 5, 2019 11:48:15 GMT
Thanks for you answer Kinkojiro!
|
|