text stringlengths 0 1.05M | meta dict |
|---|---|
"""Blender Plug-in for Nif import and export."""
# ***** BEGIN LICENSE BLOCK *****
#
# Copyright © 2005-2015, NIF File Format Library and Tools contributors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following condition... | {
"repo_name": "nightstrike/blender_nif_plugin",
"path": "io_scene_nif/__init__.py",
"copies": "1",
"size": "4479",
"license": "bsd-3-clause",
"hash": 3307379314668922000,
"line_mean": 35.406504065,
"line_max": 107,
"alpha_frac": 0.7166145601,
"autogenerated": false,
"ratio": 3.649551752241239,
... |
# Blender Python script to triangulate obj coming from Google Blocks
# result http://vatelier.net/MyDemo/TestingTriangulation/
# via https://blender.stackexchange.com/questions/34537/how-to-batch-convert-between-file-formats
# Author: https://gist.github.com/Utopiah
import bpy # Python interface for Blender, use Shift+... | {
"repo_name": "HAZARDU5/aframe-workshop",
"path": "scripts/triangulate-obj.py",
"copies": "1",
"size": "1552",
"license": "mit",
"hash": -3443873994289034000,
"line_mean": 46.0606060606,
"line_max": 97,
"alpha_frac": 0.6217783505,
"autogenerated": false,
"ratio": 3.4412416851441243,
"config_tes... |
#-------------blender_render.py------------------------------------------------#
#
# blender_render.py
#
# Purpose: Visualizing 3D objects with blender
#
# Notes: This code can be run by using the following command:
# blender -b -P blender_render.py
# To show on stream, use:
# ... | {
"repo_name": "leios/simuleios",
"path": "visualization/gaussian_elimination/blender_render.py",
"copies": "1",
"size": "14352",
"license": "mit",
"hash": -4032485754927013000,
"line_mean": 31.6924829157,
"line_max": 97,
"alpha_frac": 0.5611761427,
"autogenerated": false,
"ratio": 3.1288423806409... |
# Blender script for splitting geometry by grid
# don't forget to triangulate while exporting
import bpy, bmesh
from bpy import context as C
bpy.ops.object.mode_set(mode='EDIT')
bm = bmesh.from_edit_mesh(C.object.data)
edges = []
step = 0.5
minn = -20
maxn = 20
for i in range(minn, maxn, 1):
ret = bmesh.op... | {
"repo_name": "Teaspot-Studio/model-gridizer",
"path": "splitgrid.py",
"copies": "1",
"size": "1172",
"license": "bsd-3-clause",
"hash": -8652688147366307000,
"line_mean": 36.8064516129,
"line_max": 124,
"alpha_frac": 0.6578498294,
"autogenerated": false,
"ratio": 2.536796536796537,
"config_tes... |
"""Blend modes."""
import math
from operator import itemgetter
SUPPORTED = frozenset(
[
'normal', 'multiply', 'darken', 'lighten', 'color-burn', 'color-dodge', 'screen',
'overlay', 'hard-light', 'exclusion', 'difference', 'soft-light',
'hue', 'saturation', 'luminosity', 'color'
]
)
NON... | {
"repo_name": "facelessuser/ColorHelper",
"path": "lib/coloraide/color/compositing/blend_modes.py",
"copies": "2",
"size": "3999",
"license": "mit",
"hash": -432629524268230100,
"line_mean": 18.8955223881,
"line_max": 89,
"alpha_frac": 0.5028757189,
"autogenerated": false,
"ratio": 3.1,
"config... |
# blendshape tools
# - import and replace current target shapes
# - export target shapes as separate objs
# - expand shapes in viewport
# - create blendshape based on selection(src/target) and lock the src
# - display blendshape target sliders for selected src geometries
# - add/remove blendshape targets
# - add/remov... | {
"repo_name": "aaronfang/personal_scripts",
"path": "af_scripts/blendshapes/blendshapeToolV2.py",
"copies": "2",
"size": "1651",
"license": "mit",
"hash": 2146407487257096700,
"line_mean": 33.3958333333,
"line_max": 100,
"alpha_frac": 0.7147183525,
"autogenerated": false,
"ratio": 3.1268939393939... |
from past.builtins import map
import sys
import threading
import time
import dbus
import dbus.mainloop.glib
from future.utils import raise_
from future.utils import iteritems
from gi.repository import GObject
from ..interfaces import Provider
from .adapter import BluezAdapter
from .adapter import _INTERFACE as _ADAP... | {
"repo_name": "adafruit/Adafruit_Python_BluefruitLE",
"path": "Adafruit_BluefruitLE/bluez_dbus/provider.py",
"copies": "1",
"size": "9599",
"license": "mit",
"hash": 8746354464698075000,
"line_mean": 45.8243902439,
"line_max": 94,
"alpha_frac": 0.6430878216,
"autogenerated": false,
"ratio": 4.470... |
from future.utils import raise_
import logging
import os
from past.builtins import map
import sys
import subprocess
import threading
import time
import objc
from PyObjCTools import AppHelper
from ..interfaces import Provider
from ..platform import get_provider
from .metadata import CoreBluetoothMetadata
from .objc_h... | {
"repo_name": "adafruit/Adafruit_Python_BluefruitLE",
"path": "Adafruit_BluefruitLE/corebluetooth/provider.py",
"copies": "1",
"size": "15832",
"license": "mit",
"hash": 5882168546241766000,
"line_mean": 46.4011976048,
"line_max": 137,
"alpha_frac": 0.6883527034,
"autogenerated": false,
"ratio": ... |
# ble.py - ASM001/ASM002 BLE Driver
#
# Note: You should copy this module to your OpenMV Cam's SD card or internal
# file system.
#
# This is a driver for the ASM001/ASM002 BLE modules. It takes care of parsing
# commands for you. Please see the http://truconnect.ack.me/2.0/general_overview
# reference guide for how to... | {
"repo_name": "iabdalkader/openmv",
"path": "scripts/examples/13-BLE-Shield/ble.py",
"copies": "3",
"size": "2945",
"license": "mit",
"hash": -1328535318469991400,
"line_mean": 34.4819277108,
"line_max": 80,
"alpha_frac": 0.5507640068,
"autogenerated": false,
"ratio": 3.308988764044944,
"config... |
# BLE scanner, based on https://code.google.com/p/pybluez/source/browse/trunk/examples/advanced/inquiry-with-rssi.py
# https://github.com/pauloborges/bluez/blob/master/tools/hcitool.c for lescan
# https://kernel.googlesource.com/pub/scm/bluetooth/bluez/+/5.6/lib/hci.h for opcodes
# https://github.com/pauloborges/bluez... | {
"repo_name": "wwwins/RaspberryPi-beacon",
"path": "other_version/ble-scanner.py",
"copies": "1",
"size": "13419",
"license": "mit",
"hash": 4026739384386830300,
"line_mean": 39.4186746988,
"line_max": 121,
"alpha_frac": 0.5776138311,
"autogenerated": false,
"ratio": 3.108408617095205,
"config_... |
"""BLEU metric util used during eval for MT."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import collections
import math
import os
import re
import sys
import time
import unicodedata
import numpy as np
import six
# pylint: disable=redefined-builtin
fro... | {
"repo_name": "mlperf/training_results_v0.6",
"path": "Google/benchmarks/transformer/implementations/tpu-v3-32-transformer/transformer/utils/bleu_hook.py",
"copies": "6",
"size": "10370",
"license": "apache-2.0",
"hash": 6939094269535321000,
"line_mean": 33.5666666667,
"line_max": 80,
"alpha_frac": 0... |
from sklearn.decomposition import PCA, FastICA
import numpy as np
import matplotlib.pyplot as plt
import pyprobml_utils as pml
def plot_signals(signals, suptitle, file_name):
plt.figure(figsize=(8, 4))
for i, signal in enumerate(signals, 1):
plt.subplot(n_signals, 1, i)
plt.plot(signal)
plt.xlim([0, N... | {
"repo_name": "probml/pyprobml",
"path": "scripts/ica_demo.py",
"copies": "1",
"size": "1715",
"license": "mit",
"hash": 6724160396609627000,
"line_mean": 30.2,
"line_max": 103,
"alpha_frac": 0.6833819242,
"autogenerated": false,
"ratio": 2.7483974358974357,
"config_test": false,
"has_no_keyw... |
bl_info = {
"name": "Add Empty Mesh Object",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "View3D > Add > Mesh",
"description": "Adds Meshobject as Empty mesh ",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Object"}
import bpy, math
... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yAdd_empty_mesh_object.py",
"copies": "1",
"size": "1625",
"license": "mit",
"hash": 4533238319071709700,
"line_mean": 23.1230769231,
"line_max": 76,
"alpha_frac": 0.6534779834,
"autogenerated": false,
"ratio": 2.6649659863945576,
"config_test... |
bl_info = {
"name": "Add View Rotetion Empty",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "View3D > Add ",
"description": "Add a Empty as Cureent View Rotetion ",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Object"}
import bpy
#3D... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yAdd_View_Rotation_Empty.py",
"copies": "1",
"size": "1573",
"license": "mit",
"hash": 1520082283764900400,
"line_mean": 22.5238095238,
"line_max": 59,
"alpha_frac": 0.6772451047,
"autogenerated": false,
"ratio": 2.5187074829931975,
"config_te... |
bl_info = {
"name": "AIFOV",
"author": "40N91",
"version": (1, 0),
"blender": (2, 75, 0),
"location": "View3D > Add > Mesh > New Object",
"description": "Adds a new Mesh Object",
"warning": "",
"wiki_url": "",
"category": "Add Mesh",
}
import bpy
from bpy.types import Operator
... | {
"repo_name": "4ON91/KnickKnacks",
"path": "Blender/Math Notes/AI_FieldOfVision.py",
"copies": "1",
"size": "4566",
"license": "mit",
"hash": 4385581352279957000,
"line_mean": 28.0828025478,
"line_max": 90,
"alpha_frac": 0.5849759089,
"autogenerated": false,
"ratio": 3.342606149341142,
"config_... |
bl_info = {
'name': 'Babylon.js',
'author': 'David Catuhe, Jeff Palmer',
'version': (4, 6, 1),
'blender': (2, 75, 0),
'location': 'File > Export > Babylon.js (.babylon)',
'description': 'Export Babylon.js scenes (.babylon)',
'wiki_url': 'https://github.com/BabylonJS/Babylon.js/tree/master/Ex... | {
"repo_name": "jtmckay/PenguinWars",
"path": "supplemental/io_export_babylon.py",
"copies": "1",
"size": "121983",
"license": "mit",
"hash": 7476370276504703000,
"line_mean": 42.3178267045,
"line_max": 222,
"alpha_frac": 0.5574793209,
"autogenerated": false,
"ratio": 3.8522974893415443,
"config... |
bl_info = {
"name": "Batch NLA export",
"category": "Import-Export",
}
import bpy
class NLABatchExport(bpy.types.Operator):
"""Custom NLA batch export""" # blender will use this as a tooltip for menu items and buttons.
bl_idname = "export.nlaexport" # unique identifier for buttons and menu it... | {
"repo_name": "durkhaz/BlenderScripts",
"path": "nla_export_addon.py",
"copies": "1",
"size": "2554",
"license": "mit",
"hash": 3339917121607438000,
"line_mean": 38.90625,
"line_max": 107,
"alpha_frac": 0.5512920908,
"autogenerated": false,
"ratio": 4.292436974789916,
"config_test": false,
"h... |
bl_info = {
"name": "Cloth to Armature",
"description": "Parent cloth to armature using already rigged child",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Cloth to Armature",
"warning": "",
"wiki_url": "http://algoholic.eu/blender-... | {
"repo_name": "sadaszewski/blender-addons",
"path": "rigging_cloth.py",
"copies": "1",
"size": "6417",
"license": "bsd-2-clause",
"hash": 2207516333189696500,
"line_mean": 30.3024390244,
"line_max": 78,
"alpha_frac": 0.4957145083,
"autogenerated": false,
"ratio": 3.4761646803900326,
"config_tes... |
bl_info = {
"name": "CONSMODEL format",
"author": "Ryan Pavlik",
"version": (1, 0, 0),
"blender": (2, 70, 0),
"location": "File > Import-Export",
"description": "Export CONSMODEL",
"warning": "",
"wiki_url": "",
"support": "COMMUNITY",
"category": "Import-Export"}
if "bpy" in lo... | {
"repo_name": "rpav/io_scene_consmodel",
"path": "__init__.py",
"copies": "1",
"size": "1436",
"license": "bsd-2-clause",
"hash": 7596334419704446000,
"line_mean": 23.7586206897,
"line_max": 72,
"alpha_frac": 0.6086350975,
"autogenerated": false,
"ratio": 3.278538812785388,
"config_test": false... |
bl_info = {
"name": "copy action as roop around preview area",
"description": "選択したコントロールポイントをプレビュー範囲の前後にコピー",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "Doop seet",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Animetion"}
import ... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yCopyActionAsRoop.py",
"copies": "1",
"size": "2737",
"license": "mit",
"hash": -7979862083251994000,
"line_mean": 26.0674157303,
"line_max": 58,
"alpha_frac": 0.6504773765,
"autogenerated": false,
"ratio": 2.3388349514563105,
"config_test": f... |
bl_info = {
"name": "Copy To External",
"version": (1, 0),
"author": "Oliver Hotz",
"description": "Copies current object to clipboard for use in other applications / instances",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
class CopyToExternal(bpy.types.Operator):
... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/BLENDER_ExportToExternal.py",
"copies": "2",
"size": "4435",
"license": "apache-2.0",
"hash": 7388787439722112000,
"line_mean": 37.2413793103,
"line_max": 132,
"alpha_frac": 0.4886133033,
"autogenerated": false,
"ratio": 3.761662... |
bl_info = {
"name": "Copy To External",
"version": (1, 0),
"blender": (2, 80, 0),
"author": "Oliver Hotz",
"description": "Copies current object to clipboard for use in other applications / instances",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
class OD_OT_Cop... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/Blender280/BLENDER_ExportToExternal.py",
"copies": "1",
"size": "4486",
"license": "apache-2.0",
"hash": 315618272533815500,
"line_mean": 37.3504273504,
"line_max": 132,
"alpha_frac": 0.4890771288,
"autogenerated": false,
"ratio"... |
bl_info = {
"name": "Copy To External",
"version": (1, 0),
"blender": (2, 90, 0),
"author": "Oliver Hotz",
"description": "Copies current object to clipboard for use in other applications / instances",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
class OD_OT_Cop... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/Blender290/BLENDER_ExportToExternal.py",
"copies": "1",
"size": "4486",
"license": "apache-2.0",
"hash": -7893530794724091000,
"line_mean": 37.3504273504,
"line_max": 132,
"alpha_frac": 0.4890771288,
"autogenerated": false,
"rati... |
bl_info = {
"name": "Custom mesh format",
"description": "Custom mesh format",
"author": "Pavlo Lavrenenko",
"version": (0, 2),
"blender": (2, 6, 0),
"location": "File > Import-Export",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Import-Export"}
import bpy
im... | {
"repo_name": "santa01/yage",
"path": "blender/ExportMesh.py",
"copies": "1",
"size": "4128",
"license": "mit",
"hash": -4792343042908242000,
"line_mean": 27.4689655172,
"line_max": 89,
"alpha_frac": 0.5692829457,
"autogenerated": false,
"ratio": 3.7941176470588234,
"config_test": false,
"has... |
bl_info = {
"name": "Dupulcate Sepaleted Object",
"description": "Adds Meshobject as Empty mesh ",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "View3D > Add > Mesh",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Object"}
import bpy
#... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yDupulicate_sepaleted_object.py",
"copies": "1",
"size": "2309",
"license": "mit",
"hash": -4898323094655066000,
"line_mean": 24.025,
"line_max": 103,
"alpha_frac": 0.6896551724,
"autogenerated": false,
"ratio": 2.0607621009268797,
"config_tes... |
bl_info = {
"name": "dupulicate action at cusor",
"description": "選択したコントロールポイントを現在のカーソル基準に複製",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "Doop seet",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Animetion"}
import bpy
def copy_a... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yDupulicateActionAtCurrentTime.py",
"copies": "1",
"size": "3386",
"license": "mit",
"hash": -7712956107559024000,
"line_mean": 26.1759259259,
"line_max": 76,
"alpha_frac": 0.6768916155,
"autogenerated": false,
"ratio": 2.229483282674772,
"con... |
bl_info = {
"name": "Export Binary Raze Mesh Indexed (.mesh)",
"author": "John Stricker",
"location": "File > Export",
"description": "Export Model Verts, Norms, & Texture Coords to Binary File with unique values and an indexed array",
"category": "Import-Export"}
import bpy
from bpy.props import *... | {
"repo_name": "Raizlabs/Raze",
"path": "Utilites/RZXBlenderModelExportIndexed.py",
"copies": "1",
"size": "7695",
"license": "mit",
"hash": -2102456878072446000,
"line_mean": 32.75,
"line_max": 153,
"alpha_frac": 0.5837556855,
"autogenerated": false,
"ratio": 3.580735225686366,
"config_test": f... |
bl_info = {
'name': 'Export: CopperJSON (.json) Format',
'author': 'farinc',
'version': (2, 2, 0),
'blender': (2, 76, 0),
'location': 'File > Import-Export',
'description': 'Export CopperJSON (.json)',
'warning': '', # used for warning icon and text in addons panel
'wiki_url': '',
't... | {
"repo_name": "farinc/copper-blender-exporter",
"path": "io_copper/__init__.py",
"copies": "1",
"size": "2518",
"license": "mit",
"hash": -4618945221342941000,
"line_mean": 29.7195121951,
"line_max": 79,
"alpha_frac": 0.631056394,
"autogenerated": false,
"ratio": 3.891808346213292,
"config_test... |
bl_info = {
"name": "Export Kokko Engine mesh",
"description": "Export meshes to custom file format to be used by Kokko Engine",
"author": "Aleksi Grön",
"version": (1, 0, 1),
"blender": (2, 80, 0),
"location": "File > Export",
"category": "Import-Export"
}
import bpy
from bpy.props import ... | {
"repo_name": "aleksigron/graphics-toolkit",
"path": "scripts/kokko_mesh_exporter/__init__.py",
"copies": "1",
"size": "2202",
"license": "mit",
"hash": 8463519064714735000,
"line_mean": 30,
"line_max": 93,
"alpha_frac": 0.6347114948,
"autogenerated": false,
"ratio": 3.692953020134228,
"config_... |
bl_info = {
"name": "Export M2N",
"category": "Export",
}
import os, bpy, bmesh, math
from mathutils import *
from bpy.props import *
from struct import *
from bpy_extras.io_utils import ExportHelper
assetsMaterialDir = 'assets/materials/'
assetsTextureDir = 'assets/textures/'
assetsSceneDir = 'assets/scenes/... | {
"repo_name": "dermoumi/m2n",
"path": "tools/blender/m2n-exporter.py",
"copies": "1",
"size": "12996",
"license": "unlicense",
"hash": -44262390615549450,
"line_mean": 35.1,
"line_max": 110,
"alpha_frac": 0.5126962142,
"autogenerated": false,
"ratio": 3.7355561943087094,
"config_test": false,
... |
bl_info = {
"name": "Export Storm Framework Mesh Format (.storm-mesh)",
"author": "vanderlokken",
"version": (1, 3),
"blender": (2, 65, 0),
"location": "File > Export > Storm Framework Mesh (.storm-mesh)",
"description": "Export mesh in Storm Framework format",
"warning": "",
"wiki_url":... | {
"repo_name": "vanderlokken/storm",
"path": "blender/io_export_storm.py",
"copies": "1",
"size": "9375",
"license": "mit",
"hash": 7211915452696367000,
"line_mean": 31.8947368421,
"line_max": 80,
"alpha_frac": 0.6065066667,
"autogenerated": false,
"ratio": 3.898128898128898,
"config_test": fals... |
bl_info = {
"name": "FractalPoke",
"author": "Christopher Kopic",
"version": (1, 0),
"blender": (2, 7, 8),
"location": "",
"description": "Iterative Poking inspired by Simon Holmedal's Always Forever",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Mesh"}
import bpy
from bpy.types import Ope... | {
"repo_name": "christopherkopic/FractalPoke-Blender3d",
"path": "FractalPoke.py",
"copies": "1",
"size": "2356",
"license": "mit",
"hash": 2175773196782821400,
"line_mean": 24.8901098901,
"line_max": 79,
"alpha_frac": 0.5925297114,
"autogenerated": false,
"ratio": 3.793880837359098,
"config_tes... |
bl_info = {
"name": "Gen2 Mesh Format",
"author": "Andrey Martynov (Dan)",
"blender": (2,6,2),
"version": (0,0,1),
"location": "File > Import-Export",
"description": "Export g2m format",
"category": "Import-Export"
}
import bpy
import array
import struct
import mathutils
from bpy.props import *
from bpy_... | {
"repo_name": "MrDan2345/g2mp",
"path": "tools/G2MeshExporter/io_mesh_g2m/__init__.py",
"copies": "1",
"size": "17731",
"license": "mpl-2.0",
"hash": -386374363433756900,
"line_mean": 25.82602118,
"line_max": 103,
"alpha_frac": 0.5021713383,
"autogenerated": false,
"ratio": 3.155543691048229,
"... |
bl_info = {
"name": "Generate Armature",
"description": "Generate armature for given mesh using user-specified vertex groups",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Generate Armature",
"warning": "",
"wiki_url": "http://algoh... | {
"repo_name": "sadaszewski/blender-addons",
"path": "rigging_generate_armature.py",
"copies": "1",
"size": "4070",
"license": "bsd-2-clause",
"hash": 4973308461837592000,
"line_mean": 29.6015037594,
"line_max": 111,
"alpha_frac": 0.4668304668,
"autogenerated": false,
"ratio": 3.6436884512085945,
... |
bl_info = {
"name": "glTF format",
"author": "Daniel Stokes",
"version": (0, 1, 0),
"blender": (2, 76, 0),
"location": "File > Import-Export",
"description": "Export glTF",
"warning": "",
"wiki_url": ""
"",
"support": 'TESTING',
"category": "Import-Export"}
if "b... | {
"repo_name": "Kupoman/io_scene_gltf",
"path": "__init__.py",
"copies": "1",
"size": "1867",
"license": "mit",
"hash": 6109979603966286000,
"line_mean": 22.6329113924,
"line_max": 81,
"alpha_frac": 0.5747188002,
"autogenerated": false,
"ratio": 3.413162705667276,
"config_test": false,
"has_no... |
bl_info = {
"name": "HECL",
"author": "Jack Andersen <jackoalan@gmail.com>",
"version": (1, 0),
"blender": (2, 80, 0),
"tracker_url": "https://github.com/AxioDL/hecl/issues/new",
"location": "Properties > Scene > HECL",
"description": "Enables blender to gather meshes, materials, and texture... | {
"repo_name": "RetroView/hecl",
"path": "blender/hecl/__init__.py",
"copies": "3",
"size": "11246",
"license": "mit",
"hash": -2534489117762078700,
"line_mean": 41.1198501873,
"line_max": 120,
"alpha_frac": 0.6166637026,
"autogenerated": false,
"ratio": 3.4338931297709925,
"config_test": false,... |
bl_info = {
'name': "Import LDraw model format",
'author': "Spencer Alves (impiaaa)",
'version': (1, 0),
'blender': (2, 80, 0),
'location': "File > Import > Import LDraw",
'description': "This script imports LDraw model files.",
# used for warning icon and text in addons panel
'warning':... | {
"repo_name": "impiaaa/blender-ldraw",
"path": "ldraw.py",
"copies": "1",
"size": "29897",
"license": "mit",
"hash": -7168010542461266000,
"line_mean": 35.3710462287,
"line_max": 143,
"alpha_frac": 0.5869150751,
"autogenerated": false,
"ratio": 3.598146588037068,
"config_test": false,
"has_no... |
bl_info = {
"name": "Import Ninja Ripper/Dx Ripper RIPDUMP",
"category": "Import-Export",
"author": "Chris Barrett",
"version": (2, 0, 1),
"blender": (2, 74, 0),
"location": "File > Import > Ninja Ripper RipDump",
"description": "Imports one directory's frameNNN.mesh.txt RIPDUMP 1.1 contents... | {
"repo_name": "Akaito/blender-ninjaripper-importer",
"path": "io_import_ripdump.py",
"copies": "1",
"size": "4697",
"license": "mit",
"hash": -5959843833848100000,
"line_mean": 30.7364864865,
"line_max": 184,
"alpha_frac": 0.5196934213,
"autogenerated": false,
"ratio": 3.6752738654147104,
"conf... |
bl_info = {
"name": "JSON scene export",
"author": "Henry Kielmann",
"blender": (2, 57, 0),
"version": (0,0,1),
"location": "File > Export",
"category": "Import-Export",
"description": "Exports the scene as JSON document",
"wiki_url": "http://github.com/henry4k/io_scene_json",
"track... | {
"repo_name": "henry4k/io_scene_json",
"path": "__init__.py",
"copies": "3",
"size": "1587",
"license": "unlicense",
"hash": 6286088172220416000,
"line_mean": 28.3888888889,
"line_max": 91,
"alpha_frac": 0.6540642722,
"autogenerated": false,
"ratio": 3.412903225806452,
"config_test": false,
"... |
bl_info = {
"name": ".lavy exporter",
"category": "Import-Export",
}
import os
import bpy
import json
import bmesh
import ctypes
from mathutils import Vector
from bpy.props import StringProperty, BoolProperty
from bpy_extras.io_utils import ExportHelper
from shutil import copyfile
class Vertex:
__slots__ ... | {
"repo_name": "bachelorwhc/Valkyrie",
"path": "BlenderExporterAddon/lavy.py",
"copies": "1",
"size": "7024",
"license": "mit",
"hash": -5570807491746371000,
"line_mean": 34.125,
"line_max": 114,
"alpha_frac": 0.4775056948,
"autogenerated": false,
"ratio": 3.917456776352482,
"config_test": false... |
bl_info = {
"name": "Linear Transformation example",
"author": "4ON91",
"version": (1, 0),
"blender": (2, 75, 0),
"location": "View3D > Add > Mesh > New Object",
"description": "Adds a new Mesh Object",
"warning": "",
"wiki_url": "",
"category": "Add Mesh",
}
import bpy
from bp... | {
"repo_name": "4ON91/KnickKnacks",
"path": "Blender/Math Notes/Linear Algebra/LinearTransforms.py",
"copies": "1",
"size": "4365",
"license": "mit",
"hash": 2290742114978565400,
"line_mean": 25.6158536585,
"line_max": 68,
"alpha_frac": 0.5642611684,
"autogenerated": false,
"ratio": 3.242942050520... |
bl_info = {
"name": "MORSE GUI",
"author": "Pierrick Koch",
"version": (1, 0, 0),
"blender": (2, 5, 9),
"api": 36147,
"location": "Properties>Scene",
"category": "Import-Export",
"description": "Graphical User Interface for MORSE",
"warning": "",
"wiki_url": "",
"tracker_url"... | {
"repo_name": "Arkapravo/morse-0.6",
"path": "tools/morse_gui.py",
"copies": "1",
"size": "3268",
"license": "bsd-3-clause",
"hash": -6359449551751459000,
"line_mean": 29.8301886792,
"line_max": 110,
"alpha_frac": 0.620869033,
"autogenerated": false,
"ratio": 3.587266739846323,
"config_test": f... |
bl_info = {
"name": "Morse Utils",
"description": "Utils for Environment Creation for MORSE",
"author": "Sebastian Schmidt",
"version": (0,5,0),
"blender": (2, 61, 0),
"api": 39307,
"location": "Logic",
"warning": '',
"wiki_url": "",
"tracker_url": "",
"category": "Morse"}
... | {
"repo_name": "Arkapravo/morse-0.6",
"path": "addons/morse_object_utils.py",
"copies": "1",
"size": "21638",
"license": "bsd-3-clause",
"hash": -5248363002215123000,
"line_mean": 33.7877813505,
"line_max": 112,
"alpha_frac": 0.564516129,
"autogenerated": false,
"ratio": 3.8618597180082097,
"con... |
bl_info = {
"name": "move object/vertex to camera Plane",
"description": "カメラのZ方向でオブジェクト/頂点を移動",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "Objecr",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Object"}
import bpy
import math
im... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yMove2CameraZ.py",
"copies": "1",
"size": "3536",
"license": "mit",
"hash": 2835277279709083600,
"line_mean": 27.0409836066,
"line_max": 65,
"alpha_frac": 0.6210526316,
"autogenerated": false,
"ratio": 2.520265291083272,
"config_test": false,
... |
bl_info = {
"name": "Move X Axis",
"category": "Object",
}
import bpy
class ObjectMoveX(bpy.types.Operator):
"""My Object Moving Script""" # blender will use this as a tooltip for menu items and buttons.
bl_idname = "object.move_x" # unique identifier for buttons and menu items to referen... | {
"repo_name": "james-massey/AdvancedReality",
"path": "Blender Plugin/ObjectTranslation.py",
"copies": "1",
"size": "1084",
"license": "apache-2.0",
"hash": 7383347326785161000,
"line_mean": 30,
"line_max": 103,
"alpha_frac": 0.6466789668,
"autogenerated": false,
"ratio": 3.941818181818182,
"co... |
bl_info = {
"name": "MSC",
"author": "jameswilddev",
"version": (0, 0, 0),
"blender": (2, 7, 0),
"location": "File > Export > MasSplat Cloud (.msc)",
"description": "Export face centres as a MasSplat Cloud (.msc)",
"category": "Import-Export"
}
import bpy, struct, math, random, re
class ExportMSC(bpy.ty... | {
"repo_name": "jameswilddev/WalkingSimulator",
"path": "tools/blenderMSC.py",
"copies": "2",
"size": "5210",
"license": "mit",
"hash": 6385093696885260000,
"line_mean": 35.1875,
"line_max": 254,
"alpha_frac": 0.5642994242,
"autogenerated": false,
"ratio": 3.536999321113374,
"config_test": false... |
bl_info = {
"name": "MSG",
"author": "jameswilddev",
"version": (0, 0, 0),
"blender": (2, 7, 0),
"location": "File > Export > MasSplat Geometry (.msg)",
"description": "Export triangles as MasSplat Geometry (.msg)",
"category": "Import-Export"
}
import bpy, struct, math, random
class ExportMSG(bpy.types... | {
"repo_name": "jameswilddev/MasSplat",
"path": "tools/blenderMSG.py",
"copies": "2",
"size": "2526",
"license": "mit",
"hash": 1303705368770349300,
"line_mean": 29.4457831325,
"line_max": 128,
"alpha_frac": 0.5823436263,
"autogenerated": false,
"ratio": 3.6768558951965065,
"config_test": false,... |
bl_info = {
"name": "MSN",
"author": "jameswilddev",
"version": (0, 0, 0),
"blender": (2, 7, 0),
"location": "File > Export > MasSplat Navmesh (.msn)",
"description": "Export triangles as a MasSplat Navmesh (.msn)",
"category": "Import-Export"
}
import bpy, struct, math, random
class ExportMSN(bpy.types... | {
"repo_name": "jameswilddev/MasSplat",
"path": "tools/blenderMSN.py",
"copies": "2",
"size": "2138",
"license": "mit",
"hash": -3240535931916190700,
"line_mean": 29.1267605634,
"line_max": 128,
"alpha_frac": 0.6272217025,
"autogenerated": false,
"ratio": 3.366929133858268,
"config_test": false,... |
bl_info = {
"name": "Neverwinter Nights 2 MDB/GR2 formats (NWN2MDK)",
"author": "FreshLook",
"version": (0, 10, 0),
"blender": (2, 79, 0),
"location": "File > Import-Export",
"description": "Neverwinter Nights 2 MDB/GR2 Import/Export",
"wiki_url": "https://github.com/Arbos/nwn2mdk/wiki",
... | {
"repo_name": "Arbos/nwn2mdk",
"path": "blender-2.79-addon/__init__.py",
"copies": "1",
"size": "9097",
"license": "apache-2.0",
"hash": -6394963889010194000,
"line_mean": 31.8411552347,
"line_max": 109,
"alpha_frac": 0.5817302407,
"autogenerated": false,
"ratio": 3.6070578905630453,
"config_te... |
bl_info = {
"name": "Neverwinter Nights 2 MDB/GR2 formats (NWN2MDK)",
"author": "FreshLook",
"version": (0, 12, 0),
"blender": (2, 80, 0),
"location": "File > Import-Export",
"description": "Neverwinter Nights 2 MDB/GR2 Import/Export",
"wiki_url": "https://github.com/Arbos/nwn2mdk/wiki",
... | {
"repo_name": "Arbos/nwn2mdk",
"path": "blender-2.8-addon/__init__.py",
"copies": "1",
"size": "19582",
"license": "apache-2.0",
"hash": -1070854532340296200,
"line_mean": 35.3977695167,
"line_max": 109,
"alpha_frac": 0.5727198448,
"autogenerated": false,
"ratio": 3.4769176136363638,
"config_te... |
bl_info = {
"name": "New Object",
"author": "Your Name Here",
"version": (1, 0),
"blender": (2, 75, 0),
"location": "View3D > Add > Mesh > New Object",
"description": "Adds a new Mesh Object",
"warning": "",
"wiki_url": "",
"category": "Add Mesh",
}
import bpy
import numpy as np... | {
"repo_name": "4ON91/KnickKnacks",
"path": "Blender/Math Notes/Plane Traces.py",
"copies": "1",
"size": "3429",
"license": "mit",
"hash": 1199297805081850000,
"line_mean": 25.1755725191,
"line_max": 68,
"alpha_frac": 0.5468066492,
"autogenerated": false,
"ratio": 3,
"config_test": false,
"has... |
bl_info = {
"name": "OpenSurgSim Boundary Condition",
"description": "Script to allow setting boundary condition property to vertices",
"author": "Ryan Kornheisl, Paul Novotny",
"support": "COMMUNITY",
"category": "Mesh",
}
import bpy
import bmesh
class SetBoundaryCondition(bpy.types.Operator):
... | {
"repo_name": "simquest/opensurgsim",
"path": "Tools/Blender/oss_fem.py",
"copies": "1",
"size": "1296",
"license": "apache-2.0",
"hash": 3546379235631767000,
"line_mean": 29.1395348837,
"line_max": 109,
"alpha_frac": 0.6797839506,
"autogenerated": false,
"ratio": 3.5217391304347827,
"config_te... |
bl_info = {
"name": "OSVR_Analog",
"category": "Object",
}
import bpy
from bpy.types import Operator
# from ClientKit import ClientKit
class OSVR_Analog(Operator):
"""OSVR_Analog""" # blender tooltip for menu items and buttons
bl_idname = "object.osvr_analog" # uniqu... | {
"repo_name": "BlendOSVR/OSVR-Blender",
"path": "OSVR-Analog.py",
"copies": "1",
"size": "1328",
"license": "apache-2.0",
"hash": 4189039255395095000,
"line_mean": 36.9428571429,
"line_max": 107,
"alpha_frac": 0.6423192771,
"autogenerated": false,
"ratio": 3.805157593123209,
"config_test": fals... |
bl_info = {
"name": "OSVR_Button",
"category": "Object",
}
import bpy
from bpy.types import Operator
# from ClientKit import ClientKit
class OSVR_Button(Operator):
"""OSVR_Button""" # blender tooltip for menu items and buttons
bl_idname = "object.osvr_button" # uniqu... | {
"repo_name": "BlendOSVR/OSVR-Blender",
"path": "OSVR-Button.py",
"copies": "1",
"size": "1457",
"license": "apache-2.0",
"hash": 6111276523623316000,
"line_mean": 35.425,
"line_max": 107,
"alpha_frac": 0.6369251887,
"autogenerated": false,
"ratio": 3.937837837837838,
"config_test": false,
"h... |
bl_info = {
"name": "OSVR",
"category": "Object",
}
import bpy
from bpy.types import Operator
from ClientKit import ClientKit
clientKit = ClientKit()
context = clientKit.instance.context
running = False
class OSVR(Operator):
"""OSVR""" # blender tooltip for menu items and buttons... | {
"repo_name": "BlendOSVR/OSVR-Blender",
"path": "OSVR-Blender-addon.py",
"copies": "1",
"size": "3372",
"license": "apache-2.0",
"hash": 5034901966112571000,
"line_mean": 30.2314814815,
"line_max": 214,
"alpha_frac": 0.6705219454,
"autogenerated": false,
"ratio": 4.062650602409638,
"config_test... |
bl_info = {
"name": "OSVR_Orientation",
"category": "Object",
}
import bpy
from bpy.types import Operator
# from ClientKit import ClientKit
class OSVR_Orientation(Operator):
"""OSVR_Orientation""" # blender tooltip for menu items and buttons
bl_idname = "object.osvr_orientation... | {
"repo_name": "BlendOSVR/OSVR-Blender",
"path": "OSVR-Orientation.py",
"copies": "1",
"size": "1213",
"license": "apache-2.0",
"hash": -7974860104209185000,
"line_mean": 38.1290322581,
"line_max": 110,
"alpha_frac": 0.6553998351,
"autogenerated": false,
"ratio": 4.154109589041096,
"config_test"... |
bl_info = {
"name": "OSVR_Position",
"category": "Object",
}
import bpy
from bpy.types import Operator
# from ClientKit import ClientKit
class OSVR_Position(Operator):
"""OSVR_Position""" # blender tooltip for menu items and buttons
bl_idname = "object.osvr_position" #... | {
"repo_name": "BlendOSVR/OSVR-Blender",
"path": "OSVR-Position.py",
"copies": "1",
"size": "1186",
"license": "apache-2.0",
"hash": -5815856693123459000,
"line_mean": 37.2580645161,
"line_max": 107,
"alpha_frac": 0.6475548061,
"autogenerated": false,
"ratio": 4.061643835616438,
"config_test": f... |
bl_info = {
"name": "Partial Skeletal Mesh Export",
"category": "Import-Export",
}
import bpy
import os
class SkelMeshExport(bpy.types.Operator):
"""Custom Skeletal Mesh Export""" # blender will use this as a tooltip for menu items and buttons.
bl_idname = "export.armorexport" # unique identi... | {
"repo_name": "durkhaz/BlenderScripts",
"path": "CustomSkeletalMeshExport.py",
"copies": "1",
"size": "2657",
"license": "mit",
"hash": -8024144068440846000,
"line_mean": 37.5072463768,
"line_max": 107,
"alpha_frac": 0.5302973278,
"autogenerated": false,
"ratio": 4.081413210445469,
"config_test... |
bl_info = {
"name": "Paste From External",
"version": (1, 0),
"author": "Oliver Hotz",
"description": "Paste from an external Object of other applications / instances to a current mesh",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
import bmesh
class PasteFromExtern... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/BLENDER_PasteFromExternal.py",
"copies": "2",
"size": "7853",
"license": "apache-2.0",
"hash": -2385747387677742600,
"line_mean": 37.8811881188,
"line_max": 184,
"alpha_frac": 0.5069400229,
"autogenerated": false,
"ratio": 3.9167... |
bl_info = {
"name": "Paste From External",
"version": (1, 0),
"blender": (2, 80, 0),
"author": "Oliver Hotz",
"description": "Paste from an external Object of other applications / instances to a current mesh",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
import b... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/Blender280/BLENDER_PasteFromExternal.py",
"copies": "1",
"size": "7919",
"license": "apache-2.0",
"hash": 9080233307850345000,
"line_mean": 38.0147783251,
"line_max": 184,
"alpha_frac": 0.5076398535,
"autogenerated": false,
"rati... |
bl_info = {
"name": "Paste From External",
"version": (1, 0),
"blender": (2, 90, 0),
"author": "Oliver Hotz",
"description": "Paste from an external Object of other applications / instances to a current mesh",
"category": "Object"
}
import bpy, tempfile, os
from mathutils import Vector
import b... | {
"repo_name": "heimlich1024/OD_CopyPasteExternal",
"path": "Blender/Blender290/BLENDER_PasteFromExternal.py",
"copies": "1",
"size": "7919",
"license": "apache-2.0",
"hash": -7042581658532122000,
"line_mean": 38.0147783251,
"line_max": 184,
"alpha_frac": 0.5076398535,
"autogenerated": false,
"rat... |
bl_info = {
"name": "Place On Surface",
"description": "Place object on surface with its Z direction aligned with surface normal",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Place On Surface",
"warning": "",
"wiki_url": "http://al... | {
"repo_name": "sadaszewski/blender-addons",
"path": "object_place_on_surface.py",
"copies": "1",
"size": "3472",
"license": "bsd-2-clause",
"hash": 8796540876580273000,
"line_mean": 34.0707070707,
"line_max": 98,
"alpha_frac": 0.6129032258,
"autogenerated": false,
"ratio": 3.3513513513513513,
"... |
bl_info = {
"name": "Point Cloud Loader",
"author": "Short Notion (Mark van de Korput)",
"version": (0, 1),
"blender": (2, 75, 0),
"location": "View3D > T-panel > Object Tools",
"description": "Generate point cloud from data files",
"warning": "",
"wiki_url": "",
"tracker_url": "",
... | {
"repo_name": "markkorput/PointCloud",
"path": "Blender/Addons/blender_point_cloud_loader_addon.py",
"copies": "1",
"size": "22008",
"license": "mit",
"hash": 9171054341226095000,
"line_mean": 36.5563139932,
"line_max": 336,
"alpha_frac": 0.691612141,
"autogenerated": false,
"ratio": 3.8726024986... |
bl_info = {
"name": "PsychoBlend",
"version": (0, 1),
"author": "Nathan Vegdahl",
"blender": (2, 70, 0),
"description": "Psychopath renderer integration",
"location": "",
"wiki_url": "https://github.com/cessen/psychopath/wiki",
"tracker_url": "https://github.com/cessen/psychopath/issues"... | {
"repo_name": "cessen/psychopath",
"path": "psychoblend/__init__.py",
"copies": "1",
"size": "6870",
"license": "mit",
"hash": 7692566447320990000,
"line_mean": 34.2307692308,
"line_max": 171,
"alpha_frac": 0.6324599709,
"autogenerated": false,
"ratio": 3.6426299045599153,
"config_test": false,... |
bl_info = {
"name": "Qor JSON Scene Export",
"author": "Grady O'Connell",
"blender": (2,7,6),
"version": (0,0,1),
"location": "File > Import-Export",
"description": "Import-Export Qor JSON data format (export only)",
"category": "Import-Export",
"wiki_url... | {
"repo_name": "flipcoder/qor",
"path": "util/blender/io_scene_qor/__init__.py",
"copies": "1",
"size": "1837",
"license": "mit",
"hash": -4537857434260036600,
"line_mean": 30.6724137931,
"line_max": 94,
"alpha_frac": 0.6379967338,
"autogenerated": false,
"ratio": 3.3706422018348623,
"config_tes... |
bl_info = {
'name': 'RayPump Online Accelerator',
'author': 'michal.mielczynski@gmail.com, tiago.shibata@gmail.com',
'version': '(0, 9, 9, 8)',
'blender': (2, 6, 6),
'location': 'Properties > Render > RayPump.com',
'description': 'Easy to use free online GPU-farm for Cycles',
'category': 'Re... | {
"repo_name": "michalmielczynski/RayPump-Addon",
"path": "raypump_ui_panel.py",
"copies": "1",
"size": "10472",
"license": "mit",
"hash": 406213110491763800,
"line_mean": 35.1137931034,
"line_max": 114,
"alpha_frac": 0.5717150497,
"autogenerated": false,
"ratio": 4.108277755982738,
"config_test... |
bl_info = {
"name": "Reaction Diffusion",
"description": "Perform two-component reaction diffusion in 3D",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Reaction Diffusion",
"warning": "",
"wiki_url": "http://algoholic.eu/blender-rea... | {
"repo_name": "sadaszewski/blender-addons",
"path": "object_reaction_diffusion.py",
"copies": "1",
"size": "18439",
"license": "bsd-2-clause",
"hash": 7711361612041376000,
"line_mean": 31.6932624113,
"line_max": 101,
"alpha_frac": 0.5167850751,
"autogenerated": false,
"ratio": 2.8018538216076583,... |
bl_info = {
"name": "RenderWare importer/exporter for GTA III/VC/SA (.dff)",
"author": "Ago Allikmaa (maxorator)",
"version": (0, 9, 2),
"blender": (2, 6, 3),
"location": "File > Import-Export > Renderware (.dff) ",
"description": "RenderWare importer/exporter for GTA III/VC/SA",
"category":... | {
"repo_name": "FakeYou/mashed",
"path": "tools/blender-dff/io_scene_dff.py",
"copies": "1",
"size": "64546",
"license": "mit",
"hash": -8546713577898320000,
"line_mean": 36.7247223846,
"line_max": 191,
"alpha_frac": 0.519319555,
"autogenerated": false,
"ratio": 4.132795492380587,
"config_test":... |
bl_info = {
'name': 'Rock-o-Matic',
'author': 'Klaus Silveira',
'version': (0, 1, 0),
'blender': (2, 69, 0),
'location': 'View3D > Add > Mesh',
'description': 'Generates rocks using various techniques.',
'warning': '',
'wiki_url': 'http://wiki.blender.org/index.php?title=Extensions:2.6/P... | {
"repo_name": "klaussilveira/rock-o-matic",
"path": "rock-o-matic.py",
"copies": "1",
"size": "12187",
"license": "bsd-3-clause",
"hash": -4713514894034995000,
"line_mean": 34.634502924,
"line_max": 113,
"alpha_frac": 0.6194305407,
"autogenerated": false,
"ratio": 3.326146288209607,
"config_tes... |
bl_info = {
"name": "Rotational math",
"author": "40N91",
"version": (1, 0),
"blender": (2, 75, 0),
"location": "View3D > Add > Mesh > New Object",
"description": "Adds a new Mesh Object",
"warning": "",
"wiki_url": "",
"category": "Add Mesh",
}
import bpy
import numpy as np
fr... | {
"repo_name": "4ON91/KnickKnacks",
"path": "Blender/Math Notes/Argand_plane.py",
"copies": "1",
"size": "4600",
"license": "mit",
"hash": 6269744840482432000,
"line_mean": 25.7325581395,
"line_max": 114,
"alpha_frac": 0.5345802523,
"autogenerated": false,
"ratio": 3.4992389649923896,
"config_te... |
bl_info = {
"name": "set activeStripTime to preview",
"description": "アクティブなストリップの範囲をプレビュー範囲に設定",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "NLA",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Animetion"}
import bpy
def Striptime_t... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "yStripTime_to_preview.py",
"copies": "1",
"size": "1653",
"license": "mit",
"hash": 5873268586062424000,
"line_mean": 26.6727272727,
"line_max": 91,
"alpha_frac": 0.6653517423,
"autogenerated": false,
"ratio": 2.586734693877551,
"config_test":... |
bl_info = {
"name": "sort renderlayer list",
"description": "レンダーレイヤの順序入れ替え",
"author": "Yukimi",
"version": (0,2),
"blender": (2, 6, 0),
"location": "property",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "object"}
import bpy
#レンダーレイヤノードの作成
def meke_RL_Node(... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "ySortRenderLayer.py",
"copies": "1",
"size": "4149",
"license": "mit",
"hash": -5406002042774200000,
"line_mean": 29.6535433071,
"line_max": 83,
"alpha_frac": 0.6819933213,
"autogenerated": false,
"ratio": 2.4468887492143305,
"config_test": fa... |
bl_info = {
"name": "SPARK: Spritesheet and Animation Rendering Toolkit",
"description": "SPARK (SPritesheet and Animation Rendering toolKit) allows the user to automate the rendering of their animations. The tool saves frame rate, start and end frames, cameras and more. Updating all animation renders is then j... | {
"repo_name": "gordon13/blender-spark",
"path": "spritesheet_and_animation_rendering_toolkit.py",
"copies": "1",
"size": "13506",
"license": "mit",
"hash": 172185469814096200,
"line_mean": 40.4294478528,
"line_max": 263,
"alpha_frac": 0.5948467348,
"autogenerated": false,
"ratio": 3.8599599885681... |
bl_info = {
"name": "Sprytile Painter",
"author": "Jeiel Aranal",
# Final version number must be two numerals to support x.x.00
"version": (0, 5, 20),
"blender": (2, 80, 0),
"description": "A utility for creating tile based low spec scenes with paint/map editor tools",
"location": "View3D > ... | {
"repo_name": "ChemiKhazi/Sprytile",
"path": "__init__.py",
"copies": "2",
"size": "32888",
"license": "mit",
"hash": 483065448142187140,
"line_mean": 28.3905272565,
"line_max": 160,
"alpha_frac": 0.58671856,
"autogenerated": false,
"ratio": 3.6184398723731985,
"config_test": false,
"has_no_k... |
bl_info = {
"name": "Texture Transformer",
"author": "Rich Colburn, email: the3dadvantage@gmail.com",
"version": (1, 0),
"blender": (2, 78, 0),
"location": "View3D > Extended Tools > Adjust Active Texture",
"description": "Lets you manipulate textures easily in the 3d view",
"warning": "Expe... | {
"repo_name": "the3dadvantage/BlenderSurfaceFollow",
"path": "TextureHack.py",
"copies": "1",
"size": "81243",
"license": "mit",
"hash": 1385295423374614500,
"line_mean": 48.2979368932,
"line_max": 161,
"alpha_frac": 0.5318242802,
"autogenerated": false,
"ratio": 2.7043139604553623,
"config_tes... |
bl_info = {
"name": "Tomb Raider .SAT file importer",
"author": "Israel Jacquez",
"version": (1, 0),
"blender": (2, 78, 0),
"location": "File > Import-Export",
"description": "Import .SAT file",
"warning": "",
"wiki_url": "https://github.com/ijacquez/trsat",
"tracker_url": "https://g... | {
"repo_name": "ijacquez/trsat",
"path": "io_import_trsat.py",
"copies": "1",
"size": "9998",
"license": "mit",
"hash": 2043509716043323400,
"line_mean": 37.30651341,
"line_max": 103,
"alpha_frac": 0.524304861,
"autogenerated": false,
"ratio": 3.725037257824143,
"config_test": false,
"has_no_k... |
bl_info = {
"name": "Tools Panel",
"category": "WorldForge",
"author": "anisimkalugin.com",
"description": "Worldforge Pipeline Panel",
}
import bpy
bpy.types.Scene.Rig = bpy.props.StringProperty()
def get_armature (name):
'''gets the name of the current armature '''
for ob in bpy.da... | {
"repo_name": "akalugin/worldforge_pipeline",
"path": "blender/wf_tool_panel.py",
"copies": "1",
"size": "3885",
"license": "mit",
"hash": -7374382617539760000,
"line_mean": 30.5853658537,
"line_max": 92,
"alpha_frac": 0.6211068211,
"autogenerated": false,
"ratio": 3.194901315789474,
"config_te... |
bl_info = {
"name": "Torque DTS format",
"author": "port",
"version": (0, 2, 0),
"blender": (2, 74, 0),
"location": "File > Import-Export",
"description": "Import-Export DTS, Import DTS mesh, UV's, "
"materials and textures",
"warning": "",
"support": 'COMMUNITY',
... | {
"repo_name": "portify/io_scene_dts",
"path": "__init__.py",
"copies": "1",
"size": "12287",
"license": "mit",
"hash": -7556424378294446000,
"line_mean": 28.9682926829,
"line_max": 129,
"alpha_frac": 0.591600879,
"autogenerated": false,
"ratio": 3.722205392305362,
"config_test": false,
"has_n... |
bl_info = {
"name": "Treeface addon panel",
"category": "Object",
}
import bpy
import bgl
import mathutils
import math
import itertools
class TreefaceScenePanel(bpy.types.Panel):
bl_label = "Treeface Properties"
bl_space_type = "PROPERTIES"
bl_context = "scene"
bl_region_type = "WIN... | {
"repo_name": "jiandingzhe/treeface",
"path": "blender_plugins/treeface_panel.py",
"copies": "1",
"size": "15339",
"license": "mit",
"hash": -1152861971202695800,
"line_mean": 43.850877193,
"line_max": 180,
"alpha_frac": 0.509290045,
"autogenerated": false,
"ratio": 3.8862427159868256,
"config_... |
bl_info = {
"name": "Union Loose Parts",
"description": "Separate object based on loose parts and merge results using boolean union",
"author": "Stanislaw Adaszewski",
"version": (3, 1, 1),
"blender": (2, 74, 0),
"location": "Search > Union Loose Parts",
"warning": "",
"wiki_url": "http:... | {
"repo_name": "sadaszewski/blender-addons",
"path": "union_loose_parts.py",
"copies": "1",
"size": "1598",
"license": "bsd-2-clause",
"hash": 2247786006137078000,
"line_mean": 33,
"line_max": 96,
"alpha_frac": 0.6314142678,
"autogenerated": false,
"ratio": 3.512087912087912,
"config_test": fals... |
bl_info = {
"name": "Unity Model Script Importer",
"author": "ata4",
"version": (0, 2, 0),
"blender": (2, 6, 0),
"location": "File > Import-Export",
"description": "Imports Unity model scripts exported by the Mesh2BPY script",
"warning": "",
"support": ... | {
"repo_name": "ata4/unity-editor-utils",
"path": "Blender/io_import_unity.py",
"copies": "1",
"size": "8408",
"license": "unlicense",
"hash": 4242832235108594700,
"line_mean": 35.0858369099,
"line_max": 96,
"alpha_frac": 0.5586346337,
"autogenerated": false,
"ratio": 3.846294602012809,
"config_... |
bl_info = {
"name": "UV Cube Project Modifier",
"author": "Judd Cohen",
"version": (1, 0),
"blender": (2, 65, 0),
"category": "Add Mesh",
"description": "Adds a modifier to a mesh that does automagic uv cube projection",
# "warning": "",
# "wiki_url": "",
# "tracker_url": "",
}
import ... | {
"repo_name": "juddc/UVCubeProjectModifier",
"path": "addon_uv_cube_project_modifier.py",
"copies": "1",
"size": "3123",
"license": "mit",
"hash": -4889274467983090000,
"line_mean": 29.9207920792,
"line_max": 91,
"alpha_frac": 0.6032660903,
"autogenerated": false,
"ratio": 3.3508583690987126,
"... |
bl_info = {
'name': 'Vertex Counter',
'author': 'curly-brace',
'location': 'Properties Panel',
'description': 'Shows a REAL vertex count',
'category': 'System',
}
import bpy
import bmesh
import time
from threading import Timer
from bpy.props import BoolProperty
from operator import itemgetter
cla... | {
"repo_name": "curly-brace/Blender-Vertex-Counter",
"path": "vertex_counter.py",
"copies": "1",
"size": "7273",
"license": "mit",
"hash": -7393091255469451000,
"line_mean": 32.8279069767,
"line_max": 108,
"alpha_frac": 0.5536917366,
"autogenerated": false,
"ratio": 3.813843733613005,
"config_te... |
bl_info= {
"name": "VMD Exporter",
"author": "Takosuke",
"version": (0, 0, 1),
"blender": (2, 79, 0),
"location": "Properties",
"description": "Export VMD file.",
"support": "COMMUNITY",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": 'Object'}
if "bpy" in loca... | {
"repo_name": "TakosukeGH/vmd_exporter",
"path": "__init__.py",
"copies": "1",
"size": "1167",
"license": "mit",
"hash": 4899709923329132000,
"line_mean": 24.3695652174,
"line_max": 111,
"alpha_frac": 0.6358183376,
"autogenerated": false,
"ratio": 3.382608695652174,
"config_test": false,
"has... |
bl_info = {
"name": "Weld Object Normals",
"author": "Some asshole",
"version": ( 0, 1, 0 ),
"blender": (2, 76, 0),
"location": "Tool shelf",
"description": "Weld the normals of two objects.",
"show_expanded": True,
"category": "Object"}
import bpy
import bmesh
import os
import logging... | {
"repo_name": "Ganonmaster/sfm-scripts",
"path": "weld_normals.py",
"copies": "1",
"size": "9817",
"license": "mit",
"hash": -6382135508969916000,
"line_mean": 31.9429530201,
"line_max": 123,
"alpha_frac": 0.5874503412,
"autogenerated": false,
"ratio": 3.732699619771863,
"config_test": false,
... |
bl_info = {
"name": "Blender Queue",
"author": "Patrick W. Crawford",
"version": (1, 0),
"blender": (2, 72, 1),
"location": "Properties > Render",
"description": "Render queues via command line",
"warning": "",
"wiki_url": "http://www.theduckcow.com",
"category": "Render"}
import bpy, os, subprocess
from sub... | {
"repo_name": "TheDuckCow/blenderQueue",
"path": "blenderQueue.py",
"copies": "1",
"size": "4335",
"license": "mit",
"hash": -236408274664101760,
"line_mean": 28.6917808219,
"line_max": 132,
"alpha_frac": 0.6881199539,
"autogenerated": false,
"ratio": 2.9855371900826446,
"config_test": false,
... |
bl_info = {
"name": "Commotion",
"author": "Mikhail Rachinskiy +MikhailRachinskiyByDesign",
"version": (1,2),
"blender": (2,7,4),
"location": "3D View → Tool Shelf",
"description": "Animation Tools for motion graphics.",
"wiki_url": "https://github.com/mrachinskiy/blender-addon-commotion",
"tracker_url": "https... | {
"repo_name": "kmeirlaen/blender-addon-commotion",
"path": "__init__.py",
"copies": "1",
"size": "7329",
"license": "mit",
"hash": -8049336146472553000,
"line_mean": 35.2772277228,
"line_max": 155,
"alpha_frac": 0.7211682817,
"autogenerated": false,
"ratio": 3.1245202558635397,
"config_test": f... |
bl_info = {
"name": "Export XPLM Binary (.xplm)",
"author": "Justin Bowes",
"version": (1, 0),
"blender": (2, 5, 7),
"api": 35622,
"location": "File > Export",
"description": "Export Model to XPLM Binary File",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Import-Export"}
'''
Usage Notes:
... | {
"repo_name": "justinbowes/k2",
"path": "build/tools/blender/io_export_xplm.py",
"copies": "1",
"size": "6348",
"license": "mit",
"hash": -3221311662660888000,
"line_mean": 27.2133333333,
"line_max": 138,
"alpha_frac": 0.6780088217,
"autogenerated": false,
"ratio": 2.8326639892904955,
"config_t... |
bl_info = {
"name": "Move line to empty",
"category": "Object"}
import bpy
from bpy.types import Operator
from mathutils import Matrix
class OBJECT_OT_move_line_to_empty(Operator):
bl_idname = "mesh.move_line_to_empty"
bl_label = "Move line to empty"
bl_options = {'REGISTER', 'UNDO'}
percentage = bpy.props.Flo... | {
"repo_name": "eben-roux/blender-addons",
"path": "move_line_to_empty/move_line_to_empty.py",
"copies": "1",
"size": "1110",
"license": "bsd-3-clause",
"hash": -5035534136351042000,
"line_mean": 22.125,
"line_max": 94,
"alpha_frac": 0.672972973,
"autogenerated": false,
"ratio": 2.928759894459103,... |
bl_info = {
"name": "Slected Marker to frame range",
"author": "Yukimi",
"version": (1, 0),
"blender": (2, 70, 0),
"location": "Animation",
"description": "set playback/rendering range from selected timeline_marker",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Animation"}
import bpy
#set ... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "ySlectedMarker2FrameRange.py",
"copies": "1",
"size": "1907",
"license": "mit",
"hash": -280051550087826460,
"line_mean": 28.3384615385,
"line_max": 77,
"alpha_frac": 0.7304667016,
"autogenerated": false,
"ratio": 2.7758369723435226,
"config_t... |
bl_info = {
"name": "Weep JSON Scene Format",
"author": "Sampsa Vierros",
"blender": (2, 70, 0),
"location": "File > Import-Export",
"description": "Export scene to Weep Engine's JSON format",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"version": (0, 31),
"category": "Import-Export"}
import bpy
from b... | {
"repo_name": "tapio/weep",
"path": "tools/blender/io_scene_json/__init__.py",
"copies": "1",
"size": "11115",
"license": "mit",
"hash": 7301700538831095000,
"line_mean": 31.5,
"line_max": 113,
"alpha_frac": 0.6864597391,
"autogenerated": false,
"ratio": 3.055250137438153,
"config_test": false,... |
bl_info = {
"name": "Export to AVS/UCD.ASCII (.inp)",
"author": "Florian Sonner",
"version": (1, 0),
"blender": (2, 7, 4),
"location": "File > Export > AVS/UCD.ASCII (.inp)",
"description": "Export 2d polygonials to AVS/UCD file format (ASCII variant) and assigns colors to edges. Ignores z coordinates.",
... | {
"repo_name": "fsonner/blenderucdexport",
"path": "exportucd.py",
"copies": "1",
"size": "5787",
"license": "mit",
"hash": 1354452860366488000,
"line_mean": 26.4265402844,
"line_max": 134,
"alpha_frac": 0.6303784344,
"autogenerated": false,
"ratio": 2.9540581929555896,
"config_test": false,
"... |
bl_info = {
"name": "3D Object to Photoshop",
"description": "選択形状をPhotoshopの3Dレイヤに",
"author": "Yukimi",
"version": (0,4),
"blender": (2, 6, 0),
"location": "object",
"warning": "",
"wiki_url": "",
"tracker_url": "http://yukimi-blend.blogspot.jp/",
"category": "Import-... | {
"repo_name": "Yukimituki/Blender_addons",
"path": "Obj_to_Photoshop/__init__.py",
"copies": "1",
"size": "3165",
"license": "mit",
"hash": 7790577082809199000,
"line_mean": 31.2209302326,
"line_max": 106,
"alpha_frac": 0.5775831874,
"autogenerated": false,
"ratio": 2.706161137440758,
"config_t... |
bl_info = {
'name': 'Babylon.js',
'author': 'David Catuhe, Jeff Palmer',
'version': (1, 8, 0),
'blender': (2, 72, 0),
"location": "File > Export > Babylon.js (.babylon)",
"description": "Export Babylon.js scenes (.babylon)",
'wiki_url': 'https://github.com/BabylonJS/Babylon.js/wiki/13... | {
"repo_name": "aletheiagamestudio/A3D",
"path": "exporter/io_export_babylon.py",
"copies": "1",
"size": "83280",
"license": "mit",
"hash": 4742918044737139000,
"line_mean": 41.0165289256,
"line_max": 200,
"alpha_frac": 0.539445245,
"autogenerated": false,
"ratio": 3.894318447509937,
"config_tes... |
bl_info = {
'name': 'Babylon.js',
'author': 'David Catuhe, Jeff Palmer',
'version': (3, 0, 6),
'blender': (2, 75, 0),
'location': 'File > Export > Babylon.js (.babylon)',
'description': 'Export Babylon.js scenes (.babylon)',
'wiki_url': 'https://github.com/BabylonJS/Babylon.js/tree/ma... | {
"repo_name": "Vrashq/BabylonJs_Rendu",
"path": "assets/sources/blenderExportBabylon/io_export_babylon.py",
"copies": "1",
"size": "106820",
"license": "apache-2.0",
"hash": 6131859413568907000,
"line_mean": 41.3171127332,
"line_max": 189,
"alpha_frac": 0.5381014791,
"autogenerated": false,
"rati... |
bl_info = {
"name": "Blender Navigator",
"category": "Scene",
}
import bpy
import socket
import mathutils
import math
#----------- Initial Values ----------------------------
print("----------------------------------------------")
# Math -----------------------------
TargetZoom = 0;
# UD... | {
"repo_name": "vitorbalbio/code",
"path": "BlenderNav/BlenderNav.py",
"copies": "2",
"size": "6099",
"license": "mit",
"hash": -4779932690525464000,
"line_mean": 27.3028846154,
"line_max": 89,
"alpha_frac": 0.4707136998,
"autogenerated": false,
"ratio": 4.057922769640479,
"config_test": false,
... |
bl_info = {
"name": "Duplicate Hidden",
"description": "Duplicate hierarchy including hidden objects",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Duplicate Hidden",
"warning": "",
"wiki_url": "http://algoholic.eu/blender-d... | {
"repo_name": "sadaszewski/blender-addons",
"path": "object_duplicate_hidden.py",
"copies": "1",
"size": "1752",
"license": "bsd-2-clause",
"hash": 4235308375131074000,
"line_mean": 23.7647058824,
"line_max": 66,
"alpha_frac": 0.4931506849,
"autogenerated": false,
"ratio": 3.8086956521739133,
"... |
bl_info = {
"name": "Export Shape Keys for Unity",
"author": "Karl Lattimer",
"version": (0, 0, 1),
"blender": (2, 7, 4),
"location": "Export Shape Key for Unity",
"description": "Exports shape keys and shape key animations for use in Unity",
"warning": "",
"url": "https://github... | {
"repo_name": "klattimer/io_export_shapekeys",
"path": "Blender/io_export_shapekeys.py",
"copies": "1",
"size": "20829",
"license": "mit",
"hash": 1429099868127546000,
"line_mean": 32.7133333333,
"line_max": 142,
"alpha_frac": 0.5468119839,
"autogenerated": false,
"ratio": 4.080721003134796,
"c... |
bl_info = {
"name": "Grow Along",
"description": "Grow object along a surface",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Grow Along",
"warning": "",
"wiki_url": "http://algoholic.eu/blender-grow-along/",
"category":... | {
"repo_name": "sadaszewski/blender-addons",
"path": "object_grow_along.py",
"copies": "1",
"size": "5649",
"license": "bsd-2-clause",
"hash": 7434630722599821000,
"line_mean": 32.2363636364,
"line_max": 98,
"alpha_frac": 0.5259337936,
"autogenerated": false,
"ratio": 3.370525059665871,
"config_... |
bl_info = {
"name": "Grow Leaves",
"description": "Grow leaves on an object avoiding collisions with designated surface",
"author": "Stanislaw Adaszewski",
"version": (1, 0, 0),
"blender": (2, 78, 0),
"location": "Search > Grow Leaves",
"warning": "",
"wiki_url": "http://algoholi... | {
"repo_name": "sadaszewski/blender-addons",
"path": "object_grow_leaves.py",
"copies": "1",
"size": "4478",
"license": "bsd-2-clause",
"hash": -8341944358728371000,
"line_mean": 33.2598425197,
"line_max": 98,
"alpha_frac": 0.5475658776,
"autogenerated": false,
"ratio": 3.679539852095316,
"confi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.