The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/bindings: Fix typos

+4 -4
+4 -4
src/xrt/auxiliary/bindings/bindings.py
··· 201 201 return not self.is_input() 202 202 203 203 204 - class Identifer: 204 + class Identifier: 205 205 """A Identifier is a OpenXR identifier with a user path, such as button 206 206 X, a trackpad, a pose such as aim. It can have one or more features, even 207 - tho outputs doesn't include a component/feature path a output indentifier 207 + tho outputs doesn't include a component/feature path a output identifier 208 208 will have a haptic output feature. 209 209 """ 210 210 ··· 238 238 component_list, 239 239 json_subpath["dpad_emulation"]) 240 240 241 - i = Identifer(subaction_path, 241 + i = Identifier(subaction_path, 242 242 identifier_path, 243 243 json_path, 244 244 component_list, ··· 271 271 self.profile_type = json_profile["type"] 272 272 self.monado_device_enum = json_profile["monado_device"] 273 273 self.validation_func_name = profile_name.replace("/interaction_profiles/", "").replace("/", "_") 274 - self.identifiers = Identifer.parse_identifiers(json_profile) 274 + self.identifiers = Identifier.parse_identifiers(json_profile) 275 275 276 276 self.steamvr_controller_type = None 277 277 if "steamvr_controllertype" in json_profile: