playMaker

Author Topic: CallStaticMethod  (Read 1247 times)

casper7609

  • Playmaker Newbie
  • *
  • Posts: 3
CallStaticMethod
« on: July 13, 2016, 02:06:07 AM »
Hi, I have a question regarding CallStaticMethod.cs file.
I'm wondering CallStaticMethod.cs file's storeResult.SetValue(result);(line 92) is supposed to be like 
if (result != null)
{
     storeResult.SetValue(result);
}
for a case that the result is null when called a void function..
Is it an intended feature?

Thank you.