We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
core:connect_point
1 parent ba5dd8f commit 02b098cCopy full SHA for 02b098c
app/src/core/stage/ProjectUpgrader.tsx
@@ -484,6 +484,23 @@ export namespace ProjectUpgrader {
484
}
485
case "core:connect_point": {
486
// 连接点
487
+ data = {
488
+ _: "ConnectPoint",
489
+ uuid: entity.uuid,
490
+ text: entity.text,
491
+ details: toDetails(entity.details),
492
+ collisionBox: {
493
+ _: "CollisionBox",
494
+ shapes: [
495
+ {
496
+ _: "Rectangle",
497
+ location: toVector(entity.location),
498
+ size: toVector([1, 1]),
499
+ },
500
+ ],
501
502
+ color: toColor(entity.color),
503
+ };
504
break;
505
506
case "core:url_node": {
0 commit comments