gazebo_world_manager/scene_plugin.py

17 lines
371 B
Python

class ScenePlugin:
"""
场景自定义模型的处理。
"""
def __init__(self, scene_name):
self.scene_name = scene_name
def post_scene_model_spawn(self):
raise NotImplementedError()
def post_scene_model_state(self):
raise NotImplementedError()
def get_scene_model_state(self):
raise NotImplementedError()