Eliot's Forum

Full Version: var delegate<XXXXX>
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
for some reason ucc for unreal engine 2.5 does not like that format, what can I do?
Ah those properties are atuo-generated by UCC -make, for example if a class declares a "delegate MyDelegateFunction();" then a "var delegate __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".
interesting information