mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
22 lines
628 B
JavaScript
22 lines
628 B
JavaScript
import ObjectEntity from "../ObjectEntity"
|
|
import ObjectReferenceEntity from "../ObjectReferenceEntity"
|
|
import PinEntity from "../PinEntity"
|
|
|
|
export default class KnotEntity extends ObjectEntity {
|
|
|
|
constructor(options = {}) {
|
|
super(options)
|
|
this.Class = new ObjectReferenceEntity("/Script/BlueprintGraph.K2Node_Knot")
|
|
this.Name = "K2Node_Knot"
|
|
this.CustomProperties = [
|
|
new PinEntity({
|
|
PinName: "InputPin",
|
|
}),
|
|
new PinEntity({
|
|
PinName: "OutputPin",
|
|
Direction: "EGPD_Output",
|
|
})
|
|
]
|
|
}
|
|
}
|