UDK "Error, Accessing a member of _'s within class through a context expression requires explicit 'O
Posted
by Ricket
on Stack Overflow
See other posts from Stack Overflow
or by Ricket
Published on 2010-03-15T22:29:39Z
Indexed on
2010/03/15
22:39 UTC
Read the original article
Hit count: 157
unreal-development-kit
|game-development
I get the following error in the UDK Frontend when I try to make my project:
C:\UDK\UDK-2010-03\Development\Src\FixIt\Classes\ZInteraction.uc(58) : Error, Accessing a member of GameUISceneClient's within class through a context expression requires explicit 'Outer'
The class ZInteraction
extends Interaction
.
Line 58 is: GetSceneClient().ConsoleCommand("KEYNAME"@Key);
What is the problem here? I am still investigating and I will update as I find out more.
edit: Tried fixing the line up as class'UIRoot'.static.GetSceneClient().ConsoleCommand("KEYNAME"@Key);
- no change.
© Stack Overflow or respective owner