Browse Source

Fix typo

tags/v1.9.11
falkTX 6 years ago
parent
commit
30b53fe0e6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/carla_backend.py

+ 1
- 1
source/carla_backend.py View File

@@ -2603,7 +2603,7 @@ class CarlaHostDLL(CarlaHostMeta):
def get_custom_data(self, pluginId, customDataId):
return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)

def get_custom_data_by_key(self, pluginId, type_, key):
def get_custom_data_value(self, pluginId, type_, key):
return charPtrToString(self.lib.carla_get_custom_data_value(pluginId, type_.encode("utf-8"), key.encode("utf-8")))

def get_chunk_data(self, pluginId):


Loading…
Cancel
Save