Linear color fix

This commit is contained in:
barsdeveloper
2022-09-07 22:17:14 +02:00
parent 610d6cfdd2
commit 9d424809c9
15 changed files with 88 additions and 63 deletions

View File

@@ -1,3 +1,4 @@
import Utility from "../Utility"
import IEntity from "./IEntity"
export default class LinearColorEntity extends IEntity {
@@ -8,4 +9,8 @@ export default class LinearColorEntity extends IEntity {
B: Number,
A: Number,
}
toString() {
return Utility.printLinearColor(this)
}
}

View File

@@ -104,16 +104,13 @@ export default class PinEntity extends IEntity {
}
getType() {
if (this.PinType.PinCategory == "struct") {
return this.PinType.PinSubCategoryObject.path
}
return this.PinType.PinCategory
}
getSubCategory() {
return this.PinType.PinSubCategoryObject.path
}
getColorValue() {
if (this.PinType.PinSubCategoryObject.path == "/Script/CoreUObject.LinearColor") {
}
}
}