Eliot's Forum
var delegate<XXXXX> - Printable Version

+- Eliot's Forum (https://eliotvu.com/forum)
+-- Forum: UE Explorer (https://eliotvu.com/forum/forumdisplay.php?fid=1)
+--- Forum: General (https://eliotvu.com/forum/forumdisplay.php?fid=3)
+--- Thread: var delegate<XXXXX> (/showthread.php?tid=521)



var delegate<XXXXX> - demetre - 11-23-2022

for some reason ucc for unreal engine 2.5 does not like that format, what can I do?


RE: var delegate<XXXXX> - eliot - 11-29-2022

Ah those properties are atuo-generated by UCC -make, for example if a class declares a "delegate MyDelegateFunction();" then a "var delegate<MyDelegateFunction> __MyDelegateFunction__Delegate" is inserted by the compiler.

While UE3 lets you compile such properties, unfortunately for UE2 you will have to remove the generated properties. And any reference to the property has to be renamed to "MyDelegateFunction".


RE: var delegate<XXXXX> - LehiPolen - 01-31-2023

interesting information