This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Normalize bones", | |
"blender": (3, 4, 1), | |
"category": "Object", | |
} | |
import bpy | |
import mathutils | |
class NormalizeBonesOperator(bpy.types.Operator): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Cysharp.Threading.Tasks; | |
using Klak.Spout; | |
using Unity.Collections; | |
using Warudo.Core.Attributes; | |
using Warudo.Core.Graphs; | |
using UnityEngine; | |
using UnityEngine.Rendering; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"id":"7da1be07-c59d-42c2-9020-c5dc3396445f","enabled":true,"name":"Cult of the Lamb copy face blendshapes","order":0,"group":null,"panningX":2269.62256,"panningY":1709.69165,"scaling":0.394318044,"nodes":{"325cefef-f9f5-4fa8-81d0-56e9e582661d":{"id":"325cefef-f9f5-4fa8-81d0-56e9e582661d","dataInputs":{"Prop":{"type":"Warudo.Plugins.Core.Assets.Prop.PropAsset","value":"{\"id\":\"c3084f7e-c1ef-4abc-aa85-8a07a1283a2d\",\"name\":\"Cult of the Lamb Hat\"}"},"TargetSkinnedMesh":{"type":"string","value":"\"Prop(Clone)\""},"BlendShape":{"type":"string","value":"\"eyeLookOutRight\""},"Value":{"type":"float","value":"0.0249997433"},"TransitionTime":{"type":"float","value":"0.0"},"TransitionEasing":{"type":"DG.Tweening.Ease","value":"{\"label\":\"OutCubic\",\"value\":9,\"description\":null,\"icon\":null}"}},"typeId":"607f4b4d-5017-4255-a0dd-65d8a926038b","name":"SET_PROP_BLENDSHAPE","x":-725.2151,"y":-183.253784},"bf588367-7ebf-426b-906e-934d404ac08b":{"id":"bf588367-7ebf-426b-906e-934d404ac08b","dataInputs":{"Characte |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Collections.Generic; | |
using System.Linq; | |
using BepInEx; | |
using UniVRM10; | |
using GameNetcodeStuff; | |
using UniGLTF; | |
using UnityEngine; | |
using UnityEngine.Rendering; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; | |
using UnityEngine; | |
public class IFacialMocapReciever : MonoBehaviour | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class TransformSlider : MonoBehaviour { | |
[Min(0.01f)] | |
public float length = 0.1f; | |
float totalOffset; | |
public float scale = 0.05f; | |
public AnimationCurve scaleCurve = AnimationCurve.Linear(0f,1f,1f,0.5f); | |
public Vector3 gravity; | |
[System.Serializable] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
[CustomEditor(typeof(ScriptableObjectWithColor))] | |
public class ScriptableObjectWithColorEditor : Editor | |
{ | |
public override Texture2D RenderStaticPreview(string assetPath, Object[] subAssets, int width, int height) | |
{ | |
ScriptableObjectWithColor targetObj = (ScriptableObjectWithColor)target; | |
if (targetObj == null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "VRM Swap Bone Names", | |
"blender": (3, 4, 1), | |
"category": "Object", | |
} | |
import bpy | |
class VRMSwapBoneNamesOperator(bpy.types.Operator): | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System; | |
public class DesktopCapture : MonoBehaviour | |
{ | |
[SerializeField] | |
uDesktopDuplication.Texture uddTexture; | |
public Light spotLight; | |
[Tooltip("Power of 2 to use for the texture size")] |