viewport_vr_preview.py: Remove "replace existing" param

This commit is contained in:
Peter Kim 2020-10-15 00:29:48 +09:00
parent 981764c7ed
commit e088488b01
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ def create_vr_actions(context: bpy.context):
interaction_path0 = action.user_path0 + action.component_path0
interaction_path1 = action.user_path1 + action.component_path1
wm.xr_session_state.create_action_binding(context, action_set.name, action_set.profile, action.name, interaction_path0, interaction_path1, False)
wm.xr_session_state.create_action_binding(context, action_set.name, action_set.profile, action.name, interaction_path0, interaction_path1)
wm.xr_session_state.set_active_action_set(context, action_set.name)