Skip to content
View Maoyeedy's full-sized avatar

Highlights

  • Pro

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 Public

    Maoyeedy's Scoop bucket

    PowerShell 1

  2. Fix: Unity Asset Store "Open in Unit...
    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"
  3. P5-ShadowGame Public

    a p5.js 3D game

    JavaScript

  4. P5-NoseGame Public

    a ml5.js game

    JavaScript

  5. [Userscript] Unity Document Syntax H...
    1
    // ==UserScript==
    2
    // @name        Unity Docs Syntax Hightligher Fork
    3
    // @namespace   https://github.com/Maoyeedy
    4
    // @version     1.3.0
    5
    // @author      Maoyeedy
  6. Unity: Autosave the modified scenes ...
    1
    #if UNITY_EDITOR
    2
    using UnityEditor;
    3
    using UnityEditor.SceneManagement;
    4
    using UnityEngine.SceneManagement;
    5