This file contains hidden or 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
| # SPDX-FileCopyrightText: 2009-2023 Blender Authors | |
| # | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| import bpy | |
| from bpy.types import Panel | |
| from bpy.app.translations import contexts as i18n_contexts | |
| class ObjectConstraintPanel: |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System] | |
| "AllowClipboardHistory"=- | |
| [HKEY_CURRENT_USER\Software\Microsoft\Clipboard] | |
| "EnableClipboardHistory"=- |
This file contains hidden or 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
| # quality tweaks | |
| seta r_allowExtensions "0" | |
| seta r_ext_compress_textures "0" | |
| seta r_ext_compress_lightmaps "0" | |
| seta cl_mouseAccel "0" | |
| seta r_ext_compiled_vertex_array "0" | |
| seta r_picmip "0" | |
| seta r_detailtextures "1" | |
| seta r_texturebits "32" | |
| seta r_texturebitslm "0" |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Keyboard formatting for Blender.Community | |
| // @description Adds the ability to quickly insert keyboard formatting tags in Blender.Community posts and comments | |
| // @include https://blender.community/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
| // @version 7.0.1 | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // ==/UserScript== |
This file contains hidden or 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
| from pymel.core import * | |
| import os | |
| import maya.api.OpenMaya as om | |
| def main(): | |
| ###### USER CUSTOMIZATION ###### | |
| ICONS_ITEMS = "play_regularrrrr.png" | |
| OUTPUT_DIRECTORY = "C:/temp/icons/" | |
| # Don't forget the closing slash! | |
| ###### ###### ###### ###### |
This file contains hidden or 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
| yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 320k --split-chapters -o "chapter:%userprofile%/Downloads/YT-DLP/Gjallarhorn/Rimfaxe (2006)/1- %(section_title)s.%(ext)s" https://www.youtube.com/watch?v=ncZ-NtsVQNU | |
| The result file names will be "1-01 - Chapter Name.mp3" | |
| I add a "1" in front as the volume number, but you do you. | |
| section_title (string): Title of the chapter | |
| section_number (numeric): Number of the chapter within the file | |
| section_start (numeric): Start time of the chapter in seconds | |
| section_end (numeric): End time of the chapter in seconds |
This file contains hidden or 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 bpy.props import (BoolProperty, | |
| PointerProperty, | |
| ) | |
| from bpy.types import (Panel, | |
| Operator, | |
| AddonPreferences, | |
| PropertyGroup, | |
| ) |
This file contains hidden or 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 sys, subprocess, time, os, shutil | |
| # FFMPEG_PATH = "./ffmpeg/ffmpeg" | |
| # text formatting | |
| class cmdUtils: | |
| Purple = '\033[95m' | |
| Blue = '\033[94m' | |
| Cyan = '\033[96m' | |
| Green = '\033[92m' |
This file contains hidden or 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
Show hidden characters
| { | |
| "cmd": "build_addon.py", | |
| "working_dir": "$project_path", | |
| "windows" : { | |
| "shell": true | |
| } | |
| } |
NewerOlder