Skip to content

Instantly share code, notes, and snippets.

View wilg's full-sized avatar
🚀
Doing new things

Wil Gieseler wilg

🚀
Doing new things
View GitHub Profile
@Lavmint
Lavmint / EditingView+MultilineTextField.swift
Last active September 22, 2021 14:05
SwiftUI EditingView + MultilineTextField
import SwiftUI
import Combine
struct ContentView: View {
struct _State {
var text = ""
}
@State var state = _State()
@Farfarer
Farfarer / characterMotor.js
Created October 15, 2012 09:22
Solve simple IK for character legs on differing ground height for Unity3D.
function LateUpdate () {
if ( collision.grounded ) {
IKOn = true;
}
else {
IKOn = false;
}
ik.solveLegIK ();
}