This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"skipTerminateQuickPick": true, | |
"skipSwitchToOutput": false, | |
"skipErrorMessage": true, | |
"commands": [ | |
{ | |
"text": "$(project) Kanban", | |
"tooltip": "Open Kanban Board", | |
"color": "white", | |
"command": "extension.kanban.openBoard", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using UnityEditor; | |
using UnityEngine; | |
public class SceneOverlayWindow | |
{ | |
private object sceneOverlayWindow; | |
private MethodInfo showWindow; | |
public UnityEngine.Object target; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"asset" : { | |
"generator" : "Khronos glTF Blender I/O v1.3.48", | |
"version" : "2.0" | |
}, | |
"scene" : 0, | |
"scenes" : [ | |
{ | |
"name" : "Scene", | |
"nodes" : [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
from mathutils import Vector, Matrix | |
#Create the armature | |
def create_armature(object, collection): | |
armature_data = bpy.data.armatures.new(object.name) | |
armature = bpy.data.objects.new(object.name, armature_data) | |
armature.matrix_basis = object.matrix_basis | |
collection.objects.link(armature) | |
return armature |