This member has provided no bio about themself...

Comment History
CJM3407
CJM3407 - - 1 comments @ Unreal Learning #3: Delving Deeper into UnrealScript

I want to first say good guide. But correct me if I am wrong, but the area about object-oriented programming SomeClass, isn't there something wrong?
function MakeItUp()
{
ThatClass.SomeInteger = 5;
GetFromSomeClass(); //AnotherInteger = 5
}
Shouldn;t it be AnotherInteger=3 b/c
GetFromSomeClass() first calls ChangeInteger() which makes
SomeInteger = 3.

Good karma+1 vote