Difference between revisions of "SKSE Plugin Development/Creating New Methods for Forms"

From the CreationKit Wiki
Jump to navigation Jump to search
(Created page with "SKSE Plugin cannot override or extend already existing Form classes. In other words, consider an ''"ObjectReference"'' object and a ''"newMethod(<parameters>)"'' function you...")
 
(No difference)

Latest revision as of 17:02, 10 December 2024

SKSE Plugin cannot override or extend already existing Form classes. In other words, consider an "ObjectReference" object and a "newMethod(<parameters>)" function you want to implement as an interaction of ObjectReference. You won't be able to implement ObjectReference.newMethod(<parameters>). Instead, you can create a new "MyScript" object and implement MyScript.newMethod(ObjectReference, <parameters>).