Skip to content
View Psyda's full-sized avatar

Block or report Psyda

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
psyda/README.md

Hi there 👋

Pinned Loading

  1. OSRS-Blender-CharacterCreator OSRS-Blender-CharacterCreator Public

    Pull Characters, design them, equip them with gear, and export with weightpaints to Blender!

    Python 4

  2. bank-tab-names bank-tab-names Public

    Customize your bank tabs with unique and styled names

    Java 2 4

  3. 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.
  4. 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
    1
    import bpy
    2
    
                  
    3
    for img in bpy.data.images:
    4
        img.filepath = img.filepath.replace('.png', '.jpg')
    5
        img.name = img.name.replace('.png', '.jpg')
  5. 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.
    1
    import bpy
    2
    
                  
    3
    for img in bpy.data.images:
    4
        img.filepath = img.filepath.replace('.png', '.jpg')
    5
        img.name = img.name.replace('.png', '.jpg')
  6. ShareX-scRGB-Proper-HDR-Fix ShareX-scRGB-Proper-HDR-Fix Public

    Forked from ShareX/ShareX

    ShareX is a free and open-source application that enables users to capture or record any area of their screen with a single keystroke. It also supports uploading images, text, and various file type…

    C# 14