Skip to content

Instantly share code, notes, and snippets.

View SamuelFolledo's full-sized avatar
🎯
Focusing

Samuel P. Folledo SamuelFolledo

🎯
Focusing
View GitHub Profile
@krazyjakee
krazyjakee / DownloadMixamoByJakeCattrall.js
Last active October 31, 2024 15:55 — forked from TheLouisHong/DownloadMixamoByLouisHong.js
Downloads all the free Mixamo Animations
function trigger(el, eventType) {
if (typeof eventType === 'string' && typeof el[eventType] === 'function') {
el[eventType]();
} else {
const event =
eventType === 'string'
? new Event(eventType, {bubbles: true})
: eventType;
el.dispatchEvent(event);
}
@MaximasPrime
MaximasPrime / Mixamo.js
Created September 28, 2020 15:12 — forked from gnuton/Mixamo.js
Script which downloads all mixamo animations for one character.
// Mixamo Animation downloadeer
// The following script make use of mixamo2 API to download all anims for a single character that you choose.
// The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI.
//
// This script has been written by [email protected] and the author is not responsible of its usage
//
// How to use this script
// 1. Browse mixamo.com
// 2. Log in
// 3. Open JS console (F12 on chrome)
@joncardasis
joncardasis / ColladaAnimationForXcode.py
Last active November 3, 2024 09:41
Convert Collada (.DAE) animation files for Xcode Scenekit Animation use by removing unnecessary data.
#!/usr/local/bin/python
# Jonathan Cardasis, 2018
#
# Cleans up a collada `dae` file removing all unnessasary data
# only leaving animations and bone structures behind.
# Combines multiple animation sequences into a single animation
# sequence for Xcode to use.
import sys
import os
import re