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
{ | |
Tools = ordered() { | |
kvrRotate180VR = GroupOperator { | |
CtrlWZoom = false, | |
CustomData = { | |
Path = { | |
Map = { | |
["Setting:"] = "/Users/vfx/Andrew/Email/KartaVR/kvrRotate180VR/Release/2025-03-23 06.07 AM R1/" | |
} | |
}, |
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
--[[-- | |
sMerge Selected - 2024-10-25 12.50 PM | |
By Andrew Hazelden ([email protected]) | |
Overview: | |
Inserts a new sMerge node and auto-connects the selected nodes as input connections. | |
Installation: | |
Copy the "sMerge Selected.lua" script to the "Scripts:/Comp" PathMap folder. |
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
Composition { | |
CurrentTime = 2, | |
RenderRange = { 1, 144 }, | |
GlobalRange = { 1, 144 }, | |
CurrentID = 81, | |
HiQ = true, | |
PlaybackUpdateMode = 0, | |
StereoMode = false, | |
Version = "Fusion Studio 19.0 build 44", | |
SavedOutputs = 1, |
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
--[[-- | |
Camera Sensor Database v1 - 2024-05-29 05.30 PM (UTC -3) | |
Database By: Jacob Danell <[email protected]> | |
Fusion Studio GUI By: Andrew Hazelden <[email protected]> | |
Overview: | |
Apply camera sensor information to BMD Fusion Studio based Camera3D, uCamera, CameraTracker, Renderer3D, and uRenderer nodes. | |
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
--[[-- | |
__ ___ __ _ | |
/ |/ /___ / /_ (_)_ _______ | |
/ /|_/ / __ \/ __ \/ / / / / ___/ | |
/ / / / /_/ / /_/ / / /_/ (__ ) | |
/_/ /_/\____/_.___/_/\__,_/____/ | |
KartaVP Mobius Transform - 2024-01-28 05.08 PM | |
Ported by Andrew Hazelden ([email protected]) |
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
#!/usr/bin/env node | |
// Valkyrie-Server.js 2023-11-19 | |
// By Andrew Hazelden ([email protected] | |
const http = require("http"); | |
const host = "localhost"; | |
const port = 6761; | |
const requestListener = function (req, res) { |
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
FuRegisterClass("TestModifier", CT_Modifier, { | |
REGS_Name = "TestModifier", | |
REGS_Category = "Modifiers", | |
REGS_OpDescription = "Test Modifier", | |
REGID_DataType = "Point", | |
REGID_InputDataType = "Point", | |
}) | |
function Create() |
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
_ScriptVal___gc | |
_ScriptVal___new | |
_ScriptVal__newDef | |
_ScriptVal__newScriptVal | |
_ScriptVal_Type | |
_ScriptValListControl___gc | |
_ScriptValListControl__cast | |
_ScriptValListControl__GetAttr_bool | |
_ScriptValListControl__GetAttr_float64 | |
_ScriptValListControl__GetAttr_ID |
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
------------------------------------------------------------------------------ | |
-- Copy to Clipboard Script for Fusion - 2017-03-13 06.27 AM | |
-- by Andrew Hazelden | |
-- www.andrewhazelden.com | |
-- [email protected] | |
------------------------------------------------------------------------------ | |
-- Display the extra debugging verbosity detail in the console log | |
printStatus = true | |
-- printStatus = false |
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
-- Find out if we are running Fusion 6, 7, or 8 | |
local fu_major_version = math.floor(tonumber(eyeon._VERSION)) | |
-- Find out the current operating system platform. The platform local variable should be set to either "Windows", "Mac", or "Linux". | |
local platform = "" | |
if string.find(fusion:MapPath("Fusion:\\"), "Program Files", 1) then | |
-- Check if the OS is Windows by searching for the Program Files folder | |
platform = "Windows" | |
elseif string.find(fusion:MapPath("Fusion:\\"), "PROGRA~1", 1) then |
NewerOlder