Skip to content

Instantly share code, notes, and snippets.

View KevinRoussel's full-sized avatar
💭
RedStudio co-funder

Kévin Roussel KevinRoussel

💭
RedStudio co-funder
View GitHub Profile
@KevinRoussel
KevinRoussel / FaceMapperAutoSetup.cs
Created March 30, 2024 21:45
FaceMapper_AutoSetup / Need UnityLiveCapture & NaughtyAttributes packages
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using NaughtyAttributes;
using Unity.LiveCapture.ARKitFaceCapture;
using Unity.LiveCapture.ARKitFaceCapture.DefaultMapper;
using UnityEngine;
public class FaceMapperAutoSetup : MonoBehaviour
@KevinRoussel
KevinRoussel / MasterCSharp.cs
Last active January 10, 2024 12:52
Master C#
// Les usings au cas où des classes sont rangés dans un namespace différent
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// Là où l'on va ranger notre classe, ceux qui voudront l'utiliser pourrons faire : using MasterCSharp_x_Unity;
namespace MasterCSharp_x_Unity
{