Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:pandrr/cables into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
pandrr committed Dec 6, 2023
2 parents aab7249 + 0aae19e commit fd1dd43
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
10 changes: 10 additions & 0 deletions src/core/core_patch.js
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,16 @@ Patch.prototype.getSubPatchOp = function (patchId, objName)
return false;
};

Patch.prototype.getSubPatchOuterOp = function (subPatchId) // remove !! moved to extend class
{
const ops = this.ops;
for (let i = 0; i < ops.length; i++)
{
const op = ops[i];
if (op.isSubPatchOp() && op.patchId.get() == subPatchId) return op;
}
};


Patch.prototype._addLink = function (opinid, opoutid, inName, outName)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
},
"summary": "outputs delta values controlled by the mousewheel (scroll, zoom)",
"issues": "",
"relatedops": null,
"youtubeids": [],
"docs": {
"ports": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,13 @@
"id": "cedffacf-0f09-4342-bd21-540bd9c8037d",
"created": 1504871697605,
"summary": "touch screen input: e.g. position of fingers ",
"youtubeid": "",
"collections": [
"hardware"
],
"relatedops": [
""
],
"docs": {
"ports": []
"ports": [
{
"name": "Flip Y",
"text": "Only applies to Finger1"
}
]
},
"changelog": [
{
Expand Down
Binary file modified src/ops/base/Ops.Gl.Meshes.Cylinder/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/ops/base/Ops.Gl.Meshes.Cylinder_v2/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fd1dd43

Please sign in to comment.