Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feiss/blender-clipboard-tools-addon
Blender add-on for copying to the clipboard the position, rotation or scale of the selected object
https://github.com/feiss/blender-clipboard-tools-addon
add-on blender clipboard webxr
Last synced: 27 days ago
JSON representation
Blender add-on for copying to the clipboard the position, rotation or scale of the selected object
- Host: GitHub
- URL: https://github.com/feiss/blender-clipboard-tools-addon
- Owner: feiss
- License: mit
- Created: 2020-04-22T21:43:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T21:52:52.000Z (almost 5 years ago)
- Last Synced: 2024-11-15T20:39:49.218Z (3 months ago)
- Topics: add-on, blender, clipboard, webxr
- Language: Python
- Homepage:
- Size: 80.1 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Clipboard tools add-on
![screenshot](clipboardtools.png)
Copies to the clipboard the position, rotation or scale of the selected object
```js
// Example output:
1, 4.3, 24
```It can also copy the **geometry** (vertices and faces) of the selected object.
```js
// Example output:
var Plane = {
vertices: [-1.56, 0.0, 1.56, 1.56, 0.0, 1.56, -1.56, 0.0, -1.56, 1.56, 0.0, -1.56],
faces: [0, 1, 3, 2]
}
```## Installation
1. Download [clipboard_tools.py](clipboard_tools.py)
2. In Blender, go to Edit > Preferences > Add-ons and click on `Install...`.
3. Select the add-on file from your drive, and set the add-on checkbox on.