Answered
The script for obtaining the Bezier curve coordinates of the deformed smart object was not fou
I am writing a script that obtains the Bessel curve coordinate data after obtaining the deformation of the smart object, and I didn’t find the relevant API.
const layers = app.activeDocument.layers;
for(var i = 0; i < layers.length; ++i) {
var layer = layers[i];
if (layer.kind === LayerKind.SMARTOBJECT) {
alert(layer.kind);
// layer, Layer is an smart object, but the smart object data cannot be obtained from Layer
}
}