Improve best-practice description of included models in GitHub issues.

PiperOrigin-RevId: 455060429
Change-Id: I6a4544e99436749590a8d46ada09777ce2e90330
This commit is contained in:
Yuval Tassa
2022-06-15 01:05:38 -07:00
committed by Copybara-Service
parent 2de8aa9e92
commit 8958e13878
3 changed files with 62 additions and 25 deletions
+48
View File
@@ -0,0 +1,48 @@
---
name: Asking for help
about: Request help from the developers and the community
title: ''
labels: question
assignees: ''
---
**How to ask for help**
First, read our quick guide to
[asking good questions](https://github.com/deepmind/mujoco#asking-questions).
Below is a template for you to use:
Hi,
I'm a (student / professor / engineer) and I'm trying to use MuJoCo for _____.
I'm looking for some help with ____.
Here is a model which explains my question:
<details>
<summary>minimal XML</summary>
```XML
<mujoco>
<worldbody>
<light pos=".4 -.4 .3" dir="-2 2 -1.5" diffuse=".6 .6 .6"/>
<light pos="-.2 -.4 .3" dir="1 2 -1.5" diffuse=".6 .6 .6"/>
<geom type="plane" size=".5 .5 .01"/>
<body name="ball" pos="0 0 0.05">
<freejoint/>
<geom size=".03"/>
</body>
<body name="hammer" pos="-.05 0 0.18">
<joint axis="0 1 0"/>
<geom type="capsule" size=".01" fromto="0 0 0 -.15 0 0"/>
<geom type="box" size=".02 .02 .03" pos="-.15 0 0"/>
</body>
</worldbody>
</mujoco>
```
</details>
Here is a screenshot / video, illustrating my question:
-16
View File
@@ -1,16 +0,0 @@
---
name: Help
about: Ask for help with MuJoCo
title: ''
labels: question
assignees: ''
---
**How to ask for help**
- Take a step back and tell us what you're trying to accomplish, and in what context. The more information you give, the better the answers you will get.
- If relevant, include a ***minimal*** model that demonstrates the problem. If the model is small, include it as inline XML. If it requires binary assets, attach it as a zip file.
- Include a screenshot or video, if relevant.