Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-25 06:49:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-25 06:49:46 +0400
commit81f7e361d290a595a40f5811422e03f7560ff9f3 (patch)
tree566181e13e9e2ea88cc20cbd1a39e82ebe604569 /release/scripts/startup/bl_ui/properties_game.py
parent51555877b0e041e779cb59517ce978e81f924498 (diff)
make new rna variables more consistant with existing names.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_game.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_game.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_game.py b/release/scripts/startup/bl_ui/properties_game.py
index 26b95484b28..469c1e68706 100644
--- a/release/scripts/startup/bl_ui/properties_game.py
+++ b/release/scripts/startup/bl_ui/properties_game.py
@@ -209,14 +209,14 @@ class PHYSICS_PT_game_obstacles(PhysicsButtonsPanel, Panel):
def draw_header(self, context):
game = context.active_object.game
- self.layout.prop(game, "create_obstacle", text="")
+ self.layout.prop(game, "use_obstacle_create", text="")
def draw(self, context):
layout = self.layout
game = context.active_object.game
- layout.active = game.create_obstacle
+ layout.active = game.use_obstacle_create
row = layout.row()
row.prop(game, "obstacle_radius", text="Radius")