Skip to content
View Maoyeedy's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report Maoyeedy

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 Loading

  1. Scoop Scoop Public

    Maoyeedy's Scoop bucket

    PowerShell

  2. [Userscript] Unity Document Syntax H... [Userscript] Unity Document Syntax Highlight
    1
    // ==UserScript==
    2
    // @name        Unity Docs Syntax Hightligher Fork
    3
    // @namespace   https://github.com/Maoyeedy
    4
    // @version     1.2.7
    5
    // @author      Maoyeedy
  3. [Unity Editor Script] Rename Mixamo ... [Unity Editor Script] Rename Mixamo animation clips from "mixamo.com" to .fbx filename
    1
    using System.Collections.Generic;
    2
    using System.IO;
    3
    using UnityEditor;
    4
    using UnityEngine;
    5
    
    
  4. Solution to Unity Asset Store "Open ... Solution to Unity Asset Store "Open in Unity" button not working on Windows
    1
    $EditorRootPath = "C:\Program Files\Unity\Hub\Editor"
    2
    $versions = Get-ChildItem -Directory $EditorRootPath | Select-Object -Expand Name
    3
    $latestVersion = ($versions | Sort-Object -Descending | Select-Object -First 1)
    4
    $unityExe = Join-Path $EditorRootPath "$latestVersion\Editor\Unity.exe"
    5
    Write-Host "Try registering URL:com.unity3d.kharma for $unityExe"