PDA

View Full Version : User UI



leeh14
11-28-2009, 11:37 AM
Hi,

Was woudering how do you remove the user UI components with your own or no at all, for example how do i get ride of the default gun and health etc?

musilowski
11-28-2009, 11:52 AM
You need to code them off, by not using any UT assets or classes. This means new GameType, new HUD and so on.

leeh14
11-28-2009, 06:09 PM
right well simple using the Kismet i used the toggle off funuction and got ride of most of it but the gun is still there? is there a way to replace this character completly?

Ayalaskin
11-28-2009, 08:25 PM
These post like "u got to code em" doesnt help at all.

First to get rid off the weapon, in the UDK go to View > World Properties > World Info
Then Select "No Default Inventory for Player?".

The HUD is more complex, but theres is a simple way that makes nearly the same effect.
Go to the folder in the UDK location:
"UTGame/Config/" and then select "DefaultGame.ini"
You have to right click it and disable the propertie "read only".
Now open it with notepad text editor, and find the [UTGame.UTHUD] section in the file.
The you have to change from true to false the HUD properties:

bShowMap=false
bShowClock=false
bShowDoll=false
bShowAmmo=false
bShowPowerups=false
bShowScoring=false
bShowLeaderboard=false
bShowVehicle=false
bShowDamage=false
bShowMap=false
bShowVehicleArmorCount=false

After it, backup and delete the "UTGame.ini"
Close the UDK, and open the Unreal Frontend, select Make > Full Recompile
Tip: Its not a good ideia to stop the compile process in the middle.

leeh14
11-29-2009, 08:47 AM
thanks this was much more usefull! now just ned to learn scripting lol!

raxell
11-29-2009, 11:54 AM
Thanks ayalaskin for your help!! I did it and works

Thanks leeh14 too for asking.

It works, but if i look down I see some object following me. Objects with glowing light. Can i delete this object?

Viion
11-29-2009, 02:44 PM
You can actually set No Inventory for player through Kismisk too, look at this thread for an chart displaying it, the only part u dont do is the camera bit.

http://forums.epicgames.com/showpost.php?p=26999101&postcount=6

Ayalaskin
11-29-2009, 04:09 PM
Well, this object flying around the character ass is because the weapons are off, am trying to fix it right now.

With the Kismet approach, the flying object doesnt appears, but the engine gives an unwanted in game warning.
Anyone knows how to remove that warning?

Edit:
I Found, in the DefaultEngine.ini

Put this to false:
>bOnScreenKismetWarnings=false

roboben1
05-02-2011, 02:15 PM
I'm still getting the flying bit around my player.

I've tried both threads that i have found. But none of these have worked;
http://forums.epicgames.com/showpost.php?p=26999101&postcount=6
http://forums.epicgames.com/showthread.php?t=719754

I’ve implemented a 3rd person camera via script, so that area is working all fine. As soon as i hit no default invent. The flying arms (I believe) appear.

Any help available for this?