Skip to content
View thomashope's full-sized avatar
🍃
Walking in the woods.
🍃
Walking in the woods.

Block or report thomashope

Report abuse

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

Report abuse

Pinned Loading

  1. native-menu-bar native-menu-bar Public

    A small cross-platform library for adding native menu bars to your desktop app or game

    C 16 2

  2. Uploading an app to apple and waitin... Uploading an app to apple and waiting for notarisation to complete
    1
    # script setup
    2
    set -Eeuxo pipefail
    3
    
                  
    4
    setup_colors() {
    5
      if [[ -t 2 ]] && [[ -z "${NO_COLOR-}" ]] && [[ "${TERM-}" != "dumb" ]]; then
  3. How to import models from Blender to... How to import models from Blender to Unity directly from .blend files
    1
    # Motivation
    2
    
                  
    3
    Having your .blend files directly in your Unity project can be really convenient when working solo or on small projects. It allows you to save the file in Blender and immediately see the model updated in Unity.
    4
    
                  
    5
    The downside of keeping your .blend files in your Unity project is that everyone who wants to open the Unity project also needs to have the same version of blender installed. It also means other people can screw up your files without realising, cause issues with build systems, and create a mess in version control amongst other issues.