We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18973ea commit c9b4631Copy full SHA for c9b4631
docs/Subclassing_API.md
@@ -141,7 +141,7 @@ class Hero(Character):
141
# this new method will be available to blueprints
142
def FunnyNewMethod(self, a_word: str):
143
ue.print_string('This is a word from blueprint: ' + a_word)
144
- FunnyNewMethod.is_pure = True
+ FunnyNewMethod.pure = True
145
```
146
147
or static:
@@ -155,7 +155,7 @@ class Hero(Character):
155
# this new static method will be available to blueprints
156
def FunnyStaticMethod():
157
ue.print_string('I am a static method')
158
- FunnyNewMethod.is_static = True
+ FunnyNewMethod.static = True
159
160
161
Events can be easily exposed like this:
0 commit comments