Skip to content

Commit

Permalink
Merge pull request #2073 from Wasted-Audio/feature/heavy-else-compat
Browse files Browse the repository at this point in the history
add pd and else abstractions that are heavy compatible
  • Loading branch information
timothyschoen authored Feb 19, 2025
2 parents 2c49ec4 + c9eabce commit 86bfa69
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Source/Heavy/CompatibleObjects.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,27 @@ struct HeavyCompatibleObjects {
"knob"
};

static inline StringArray const elseAbstractions = {
"above",
"add",
"avg",
"car2pol",
"sysrt.in",
"sysrt.out",
"trig2bang",
// "float2sig.unit",
// "out.mc.hip~",
// "sendmidi",
};

static inline StringArray const pdAbstractions = {
"complex-mod~",
"hilbert~",
"rev1~",
"rev2~",
"rev3~",
};

static inline StringArray const extra = {
"comment",
"floatbox",
Expand All @@ -234,6 +255,8 @@ struct HeavyCompatibleObjects {
allObjects.addArray(heavyObjects);
allObjects.addArray(heavyAbstractions);
allObjects.addArray(elseObjects);
allObjects.addArray(elseAbstractions);
allObjects.addArray(pdAbstractions);
allObjects.addArray(extra);

return allObjects;
Expand Down

0 comments on commit 86bfa69

Please sign in to comment.