Skip to content
View bkevelham's full-sized avatar
Block or Report

Block or report bkevelham

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. unity-avatar-generation unity-avatar-generation Public

    A minimal example of how to use Unity's AvatarBuilder.BuildHumanAvatar API.

    C# 50 10

  2. A minimal sample of how to handle Sc... A minimal sample of how to handle ScriptableObject drag and drops into a scene view and onto a given GameObject.
    1
    //Minimal sample of how to drag a ScriptableObject into a scene
    2
    //onto a GameObject in that scene, and have something happen as a result
    3
    
    
    4
    using UnityEngine;
    5
    using UnityEditor;
  3. Deep copy a Mesh in Unity 2020+ Deep copy a Mesh in Unity 2020+
    1
    using UnityEngine;
    2
    
    
    3
    public class MeshUtil
    4
    {
    5
        public static Mesh DeepCopy(Mesh sourceMesh)