Update from template
parent
9a1dc950cc
commit
c36316e282
|
@ -0,0 +1,51 @@
|
||||||
|
name: Bug Report
|
||||||
|
|
||||||
|
about: File a bug report
|
||||||
|
|
||||||
|
title: "[Bug]: "
|
||||||
|
|
||||||
|
body:
|
||||||
|
- id : ticket_type
|
||||||
|
type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: Type
|
||||||
|
description: Type du ticket
|
||||||
|
options:
|
||||||
|
- bug
|
||||||
|
- feature
|
||||||
|
- maintenance
|
||||||
|
- documentation
|
||||||
|
validation:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- id : priority
|
||||||
|
type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: Priorité
|
||||||
|
description: priorité du ticket
|
||||||
|
options:
|
||||||
|
- normal
|
||||||
|
- faible
|
||||||
|
- élevée
|
||||||
|
- critique
|
||||||
|
|
||||||
|
- id: description
|
||||||
|
type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: Description du problème rencontré
|
||||||
|
value: "ça marche pô... \nN'oubliez pas de préciser la task, l'asset ou le shot, et sa version dans le cas d'un bug"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- id: path
|
||||||
|
type: input
|
||||||
|
attributes:
|
||||||
|
label: filepath
|
||||||
|
description: le chemin de la scene s'il existe
|
||||||
|
|
||||||
|
- id: log
|
||||||
|
type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Log console
|
||||||
|
description: Rensigner le crash log s'il existe
|
|
@ -0,0 +1,16 @@
|
||||||
|
## Related ticket
|
||||||
|
Link to the ticket
|
||||||
|
|
||||||
|
## Modications
|
||||||
|
Description of what your PR is doing
|
||||||
|
|
||||||
|
## How to test it
|
||||||
|
Description of how to test it
|
||||||
|
|
||||||
|
## Risk involved
|
||||||
|
- LOW
|
||||||
|
- MID
|
||||||
|
- HIGH
|
||||||
|
|
||||||
|
## Related PR
|
||||||
|
List of PR involved with this one
|
53
README.md
53
README.md
|
@ -1,13 +1,41 @@
|
||||||
# Custom Shelf
|
# CUSTOM_SHELF
|
||||||
|
> Blender addon to launch custom scripts from the User Panel
|
||||||
Adds buttons to launch custom python scripts in the User panel.
|
|
||||||
|
|
||||||
|
|
||||||
|
Pipe_test is a test repository that can be used by TDs to run code or development tests so as not to pollute the main repositories.
|
||||||
|
|
||||||
|
<!-- TABLE OF CONTENTS -->
|
||||||
|
***
|
||||||
|
<summary>Table of Contents</summary>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<a href="#installation">Installation</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#contents">Contents</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#usage">Usage</a>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- INSTALLATION -->
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Download as zip and install via the preferences > addons panel
|
1. Create your own local directory in
|
||||||
or clone repository in blender addon folder.
|
```sh
|
||||||
|
/home/<USER>/dev
|
||||||
|
```
|
||||||
|
2. Create your own local directory in
|
||||||
|
```sh
|
||||||
|
git clone ssh://git@192.168.75.224:222/autour_de_minuit/custom_shelf.git
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- CONTENTS -->
|
||||||
|
## Contents
|
||||||
|
|
||||||
|
<!-- USAGE -->
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Place your .py scripts in the `shelves/` folder with following folder structure:
|
Place your .py scripts in the `shelves/` folder with following folder structure:
|
||||||
|
@ -31,7 +59,6 @@ info = {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
To get yout variables in your code :
|
To get yout variables in your code :
|
||||||
|
|
||||||
`name = info['name']`
|
`name = info['name']`
|
||||||
|
@ -40,18 +67,4 @@ The collection return the name, so to get an object :
|
||||||
|
|
||||||
`ob = bpy.data.objects.get(info['collection']['value'])`
|
`ob = bpy.data.objects.get(info['collection']['value'])`
|
||||||
|
|
||||||
|
|
||||||
<!-- You can put a json file named "settings.json" inside your panel folder for tagging the folder
|
|
||||||
|
|
||||||
`{"tags" : ["td"]}` -->
|
|
||||||
|
|
||||||
You can next filter by tags by clicking on the arrow icon
|
You can next filter by tags by clicking on the arrow icon
|
||||||
|
|
||||||
Script file starting with '_' are hided by default, you can unhide them by unchecking the filter icon
|
|
||||||
|
|
||||||
## Support
|
|
||||||
Use the issues tracker to report a bug.
|
|
||||||
|
|
||||||
## License
|
|
||||||
GNU-GPL V3
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue