Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6951c4f
[ofxOceanodeContainer]: added encapsulation feature
Jul 16, 2025
f3d1321
[ofxOceanodeNodeMacro.h]: includes and forward declarations needed fo…
Jul 16, 2025
979afbb
[ofxOceanodeCanvas]: added keyboard shortcut cmd+E for encapsulation
Jul 16, 2025
bf9ce82
[ofxOceanodeContainer.cpp]: fixed encapsulation of scbus, as routers …
Jul 16, 2025
07fa3a5
[ofxOceanodeContainer]: Fixed an error where a single parameter with …
Aug 2, 2025
93bc2fb
[ofxOceanodeContainer]: bugfixes for encapsulate feature
Aug 21, 2025
96124ed
ofxOceanodeInspectorController: fixed a bug that made void buttons in…
Sep 12, 2025
5e2ada5
ofxOceanode.cpp: unregistered curve2
Sep 12, 2025
a8437d2
defaultnodes.h: unregistered curve2
Sep 12, 2025
b34be47
ofxOceanodePresetsController: added a call to ofxOceanodeShared to sh…
Sep 15, 2025
6b48fa2
ofxOceanodeShared.h: added methods to retrieve the actual preset name
Sep 15, 2025
2780d7c
[ofxOceanodeContainer] : changed ofTexture name for parameter encapsu…
eloimaduell Sep 17, 2025
6866d38
Merge branch 'feature-encapsulate' of https://github.com/PlaymodesStu…
eloimaduell Sep 17, 2025
c45c71b
ofxOceanodeContainer: changed oftexture parameter name to P9oftexture…
Sep 17, 2025
2713a6f
[ofxOceanodeContainer] : Removed unused ofTexture names for encapsula…
eloimaduell Sep 17, 2025
b208b30
Merge branch 'feature-encapsulate' of https://github.com/PlaymodesStu…
Sep 17, 2025
678b553
ofxOceanodeInspectorController.cpp: added dropdown display in inspector
Oct 1, 2025
fce8338
[ofxOceanodeInspectorController]: added dropdown members
Oct 1, 2025
24c8370
[ofxOceanodeCanvas]: added node transparency boolean
Oct 1, 2025
8fc3a5c
[portal.cpp]: added resend on name change implementation
Oct 1, 2025
d48587b
[portal.h]: added resend on name change members]
Oct 1, 2025
f578e56
[ofxOceanodeNodeModeal.h]: added transparent flag
Oct 1, 2025
04e1670
[ofxOceanodeNodeGui.cpp]: added transparency implementation
Oct 1, 2025
a93764a
ofxOceanodeShared: added preset path information
Oct 1, 2025
1b09bc5
ofxOceanodePresetsController: added preset path
Oct 1, 2025
f716bd2
[Encapsulate] - handle all registered types
eduardfrigola Nov 13, 2025
cd69eec
Registered vector<T> types for buffered type
eduardfrigola Nov 13, 2025
39c63c0
Revert "ofxOceanodeInspectorController: fixed a bug that made void bu…
eduardfrigola Nov 13, 2025
daeae9b
Revert "ofxOceanode.cpp: unregistered curve2"
eduardfrigola Nov 13, 2025
0df9ba0
Revert "defaultnodes.h: unregistered curve2"
eduardfrigola Nov 13, 2025
bcad6ae
Revert "ofxOceanodePresetsController: added a call to ofxOceanodeShar…
eduardfrigola Nov 13, 2025
4baa240
Revert "ofxOceanodeShared.h: added methods to retrieve the actual pre…
eduardfrigola Nov 13, 2025
55f261a
Revert "ofxOceanodeInspectorController.cpp: added dropdown display in…
eduardfrigola Nov 13, 2025
b2bdb6a
Revert "[ofxOceanodeInspectorController]: added dropdown members"
eduardfrigola Nov 13, 2025
e41e245
Revert "[ofxOceanodeCanvas]: added node transparency boolean"
eduardfrigola Nov 13, 2025
fbe339e
Revert "[portal.cpp]: added resend on name change implementation"
eduardfrigola Nov 13, 2025
b3dc306
Revert "[portal.h]: added resend on name change members]"
eduardfrigola Nov 13, 2025
c87929d
Revert "[ofxOceanodeNodeModeal.h]: added transparent flag"
eduardfrigola Nov 13, 2025
7909bb1
Revert "[ofxOceanodeNodeGui.cpp]: added transparency implementation"
eduardfrigola Nov 13, 2025
156e68b
Revert "ofxOceanodeShared: added preset path information"
eduardfrigola Nov 13, 2025
72956d8
Revert "ofxOceanodePresetsController: added preset path"
eduardfrigola Nov 13, 2025
4e1d26a
Revert "[ofxOceanodeNodeMacro.h]: includes and forward declarations n…
eduardfrigola Nov 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Managers/ofxOceanodeCanvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,9 @@ void ofxOceanodeCanvas::draw(bool *open, ofColor color, string title){
container->pasteModulesAndConnectionsInPosition(ImGui::GetMousePos() - offset, ImGui::GetIO().KeyShift);
}else if(ImGui::IsKeyPressed((ImGuiKey)'A')){
selectAllNodes();
}
}else if(ImGui::IsKeyPressed((ImGuiKey)'E')){
container->encapsulateSelectedNodes();
}
}
else if(ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Backspace)) && !ImGui::IsAnyItemActive()){
container->deleteSelectedModules();
Expand Down
Loading