CPT/FO VOL KB

This commit is contained in:
Kilian Hofmann 2025-11-29 13:49:40 +01:00
parent 37c57d5b1b
commit 03b9ecc8b8
4 changed files with 878 additions and 876 deletions

View File

@ -647,9 +647,11 @@
<WHEEL_UP>86080</WHEEL_UP>
<WHEEL_DOWN>86081</WHEEL_DOWN>
</UseTemplate>
<!-- NOTE: 110FIX - Flipped animation -->
<UseTemplate Name="TFDi_Design_MD11_Knob_Template">
<NODE_ID>MD11_CGS_VS_KB</NODE_ID>
<ANIM_NAME>MD11_CGS_VS_KB</ANIM_NAME>
<ANIM_CODE>71 (L:MD11_CGS_VS_KB) 71 72 / * -</ANIM_CODE>
<ANIM_LENGTH>72</ANIM_LENGTH>
<ANIM_KEYFRAME_SCALAR>72</ANIM_KEYFRAME_SCALAR>
<ANIM_LAG>0</ANIM_LAG>

View File

@ -62,8 +62,8 @@ paths.forEach((_path) => {
});
const fd = fs.openSync("tooltips.csv", "w");
fs.writeSync(fd, "File,Template Name,Node ID,Tooltip\n");
fs.writeSync(fd, "File|Template Name|Node ID|Tooltip\n");
objects.forEach((obj) => {
fs.writeSync(fd, `${obj.file},${obj.templateName},${obj.nodeID},\n`);
fs.writeSync(fd, `${obj.file}|${obj.templateName}|${obj.nodeID}|\n`);
});
fs.closeSync(fd);

View File

@ -9,7 +9,7 @@ const paths = [
let tips = fs.readFileSync("tooltips.csv", { encoding: "utf-8" }).split("\n");
tips = tips.reduce((prev, tip, index) => {
if (index == 0) return {};
const [file, templateName, nodeID, tooltip] = tip.split(",");
const [file, templateName, nodeID, tooltip] = tip.split("|");
if (!prev[file]) prev[file] = {};
if (!prev[file][templateName]) prev[file][templateName] = {};
prev[file][templateName][nodeID] = tooltip;

File diff suppressed because it is too large Load Diff