We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ae4b1 commit 857154cCopy full SHA for 857154c
tests/test_blueprint.py
@@ -29,6 +29,7 @@ def test_spawn(self):
29
def test_variable(self):
30
new_blueprint = ue.create_blueprint(Character, '/Game/Tests/Blueprints/Test2_' + self.random_string)
31
ue.blueprint_add_member_variable(new_blueprint, 'TestValue', 'int')
32
+ ue.blueprint_set_variable_visibility(new_blueprint, 'TestValue', 1)
33
ue.compile_blueprint(new_blueprint)
34
new_actor = self.world.actor_spawn(new_blueprint.GeneratedClass)
35
new_actor.TestValue = 17
0 commit comments