MuleRun
Chat
Resources
Pricing
Back to all
Gazebo_Sim.skill
by
farheenzehra
Run
0
0
Feb 6, 2026
Visit 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) ```