Fix niagara script variables merging

This commit is contained in:
barsdeveloper
2024-12-16 23:45:56 +02:00
parent c0032fed76
commit 3b68fb46a8
6 changed files with 169 additions and 20 deletions

View File

@@ -67,9 +67,9 @@ export default class MirroredEntity extends IEntity {
}
/** @returns {InstanceType<T>} */
valueOf() {
valueOf(arg) {
// @ts-expect-error
return this.getter().valueOf()
return this.getter(arg).valueOf()
}
toString() {