Nitroid
06-17-2010, 02:50 PM
Hi, I'm followig the Dots tutorial from: http://www.contagionentertainment.com/sampletutorials/sample1.html
When I try to compile the game, this appears:
Analyzing...
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DotsGame.uc(6) : Warning, Invalid object 'Class Core.Class' specified for property 'DefaultPawnClass'
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DotsGame.uc(7) : Warning, Invalid object 'Class Core.Class' specified for property 'PlayerControllerClass'
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DPlayerControl ler.uc(5) : Warning, Invalid object 'Class Core.Class' specified for property 'InputClass'
Scripts successfully compiled - saving package 'C:\UDK\UDK-2010-05\Binaries\Win32\..\..\UDKGame\Script\DotsGame.u'
Success - 0 error(s), 3 warning(s)
Execution of commandlet took: 28.89 seconds
[COMMANDLET 'UDK.exe make -full' SUCCEEDED] junio 17, 8:40
Since I'm new in programming stuff, I cannot figure out the poblem, I tried few things but cannot solve it.
Here are the archives:
DotsGame.uc
class DotsGame extends GameInfo
config(Game);
defaultproperties
{
DefaultPawnClass=class"DotsGame.DPawn"
PlayerControllerClass=class"DotsGame.DPlayerController"
bDelayedStart=false
}
Dpawn.uc
class DPawn extends GamePawn;
defaultproperties
{
}
DPlayerController
class DPlayerController extends GamePlayerController;
defaultproperties
{
InputClass=class"DotsGame.DPlayerInput"
}
DPlayerInput.uc
class DplayerInput extends GamePlayerInput within DPlayerController;
DefaultEngine
[UnrealEd.EditorEngine]
+EditPackages=UTGame
+EditPackages=UTGameContent
+EditPackages=DotsGame
DefaultGame
[Engine.GameInfo]
DefaultGame=DotsGame.DotsGame
DefaultServerGame=DotsGame.DotsGame
PlayerControllerClassName=DotsGame.DPlayerControll er
GameDifficulty=+1.0
MaxPlayers=32
When I try to compile the game, this appears:
Analyzing...
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DotsGame.uc(6) : Warning, Invalid object 'Class Core.Class' specified for property 'DefaultPawnClass'
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DotsGame.uc(7) : Warning, Invalid object 'Class Core.Class' specified for property 'PlayerControllerClass'
C:\UDK\UDK-2010-05\Development\Src\DotsGame\Classes\DPlayerControl ler.uc(5) : Warning, Invalid object 'Class Core.Class' specified for property 'InputClass'
Scripts successfully compiled - saving package 'C:\UDK\UDK-2010-05\Binaries\Win32\..\..\UDKGame\Script\DotsGame.u'
Success - 0 error(s), 3 warning(s)
Execution of commandlet took: 28.89 seconds
[COMMANDLET 'UDK.exe make -full' SUCCEEDED] junio 17, 8:40
Since I'm new in programming stuff, I cannot figure out the poblem, I tried few things but cannot solve it.
Here are the archives:
DotsGame.uc
class DotsGame extends GameInfo
config(Game);
defaultproperties
{
DefaultPawnClass=class"DotsGame.DPawn"
PlayerControllerClass=class"DotsGame.DPlayerController"
bDelayedStart=false
}
Dpawn.uc
class DPawn extends GamePawn;
defaultproperties
{
}
DPlayerController
class DPlayerController extends GamePlayerController;
defaultproperties
{
InputClass=class"DotsGame.DPlayerInput"
}
DPlayerInput.uc
class DplayerInput extends GamePlayerInput within DPlayerController;
DefaultEngine
[UnrealEd.EditorEngine]
+EditPackages=UTGame
+EditPackages=UTGameContent
+EditPackages=DotsGame
DefaultGame
[Engine.GameInfo]
DefaultGame=DotsGame.DotsGame
DefaultServerGame=DotsGame.DotsGame
PlayerControllerClassName=DotsGame.DPlayerControll er
GameDifficulty=+1.0
MaxPlayers=32