100_humanoids.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!-- Copyright 2021 DeepMind Technologies Limited
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.
  11. -->
  12. <mujoco model="100 Humanoids">
  13. <option timestep="0.005"/>
  14. <size memory="100M"/>
  15. <asset>
  16. <texture type="skybox" builtin="gradient" rgb1=".3 .5 .7" rgb2="0 0 0" width="512" height="512"/>
  17. <texture name="floor" type="2d" builtin="checker" width="512" height="512" rgb1=".1 .2 .3" rgb2=".2 .3 .4"/>
  18. <material name="floor" texture="floor" texrepeat="1 1" texuniform="true" reflectance=".2"/>
  19. <model name="humanoid" file="humanoid.xml"/>
  20. </asset>
  21. <visual>
  22. <map force="0.1" zfar="30"/>
  23. <rgba haze="0.15 0.25 0.35 1"/>
  24. <quality numslices="16" numstacks="8"/>
  25. <global offwidth="800" offheight="800"/>
  26. </visual>
  27. <worldbody>
  28. <geom name="floor" size="10 10 .05" type="plane" material="floor" condim="3"/>
  29. <light directional="true" diffuse=".9 .9 .9" specular="0.1 0.1 0.1" pos="0 0 5" dir="0 0 -1" castshadow="true"/>
  30. <light name="spotlight" mode="targetbodycom" target="world" diffuse="1 1 1" specular="0.3 0.3 0.3" pos="-6 -6 4" cutoff="60"/>
  31. <replicate count="10" euler="0 0 36" sep="-">
  32. <frame pos="1 0 0">
  33. <replicate count="10" euler="0 0 15" sep="-" offset="0.5 0 0">
  34. <attach model="humanoid" body="torso" prefix="_"/>
  35. </replicate>
  36. </frame>
  37. </replicate>
  38. </worldbody>
  39. </mujoco>