Skip to content

Instantly share code, notes, and snippets.

View trungnhm1998's full-sized avatar

Nguyen Hoang Minh Trung trungnhm1998

  • Archmage Labs
  • Vietnam
  • 14:32 (UTC +07:00)
View GitHub Profile
@trungnhm1998
trungnhm1998 / SkinnedMeshUpdater.cs
Created August 25, 2022 11:54 — forked from tsubaki/SkinnedMeshUpdater.cs
update SkinnedMesh
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.Assertions;
using System;
public class SkinnedMeshUpdater : MonoBehaviour
{
[SerializeField]
SkinnedMeshRenderer original;
@trungnhm1998
trungnhm1998 / CommandLineBuild.cs
Created December 31, 2022 11:08 — forked from hsandt/CommandLineBuild.cs
[Unity] C# editor script containing static methods to build a project for Android and iOS
// Usage: set the projectName you want, then run:
// [Unity executable path] [custom arguments] -executeMethod CommandLineBuild.Build[AndRun][Platform][Development] [-version VERSION]
using UnityEngine;
using UnityEditor;
using System;
using System.Collections;
using System.Linq;
public class CommandLineBuild