Back to all

Gazebo_Sim.skill

by farheenzehra

00Feb 6, 2026Visit Source
spawn_client = node.create_client(SpawnEntity, '/spawn_entity') request = SpawnEntity.Request() request.name = 'my_humanoid' request.xml = open('humanoid.urdf', 'r').read() request.initial_pose.position.z = 1.0 spawn_client.call_async(request) ```