blockly > blockRendering > DynamicShape
typ blockRendering.DynamicForm
Obiekt zawierający informacje o rozmiarze i wpisz informacje o kształcie dynamicznym.
Podpis:
export type DynamicShape = {
type: number;
width: (p1: number) => number;
height: (p1: number) => number;
isDynamic: true;
connectionOffsetY: (p1: number) => number;
connectionOffsetX: (p1: number) => number;
pathDown: (p1: number) => string;
pathUp: (p1: number) => string;
pathRightDown: (p1: number) => string;
pathRightUp: (p1: number) => string;
};