Self-Taught Computer Whisperer. My Personal GitHub, I don't use it for much aside from Mods/Experiments.
Pinned Loading
-
Moves all empty objects into collect...
Moves all empty objects into collections named after them for easy importing into Blender's Asset Library 1# Open your KB3D Pack. Make sure the textures are loaded and everything works as intended. This script assumes the Scene is named KB3D_"TitleCasePackName"-Native. It should be that by default.
2# Create a new folder in your Asset Library Folder for Blender. (Edit>Preferences>FilePaths>AssetLibraries). I recommend a setup like this
3# (D:/BlenderAssetLibraries/KB3D/CyberDistricts/Cyberdistricts.blend)
4# Where "CyberDistricts" would be the AssetLibrary.
5# Open the script in Blender by going to the Text Editor and clicking "Open" to locate the file, or paste it from the Gist.
-
This script changes every reference ...
This script changes every reference to an image in a Blend file from .png to .jpg. Useful for linking to compressed images 1import bpy
23for img in bpy.data.images:
4img.filepath = img.filepath.replace('.png', '.jpg')
5img.name = img.name.replace('.png', '.jpg')
-
-
Renames file extension paths from PN...
Renames file extension paths from PNG to JPG. Also Tells the file to search for a folder called "Renamemetopackname" instead of the normal 4k folder. 1import bpy
23for img in bpy.data.images:
4img.filepath = img.filepath.replace('.png', '.jpg')
5img.name = img.name.replace('.png', '.jpg')
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.