I'm a doctor, not a mechanic

UE3:WebAdminSettings (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Object >> Settings >> WebAdminSettings
Package: 
WebAdmin
Direct subclasses:
GeneralSettings, UTGameSettings

Base class for all WebAdminSettings instances that are include with the WebAdmin package. You can use it as base class for your own WebAdmin configuration classes, but that imposes a dependency on the WebAdmin package. It's simply best to create a subclass of Settings and copy the SetSpecialValue(...) implementation from this class to your own.

IMPORTANT! The WebAdmin is an optional server-side only package. Do not introduce a dependency on this package from a package that a client needs to download in order to play your mod.

Copyright 2008 Epic Games, Inc. All Rights Reserved

Author: Michiel 'elmuerte' Hendriks

Instance functions[edit]

GetFloatPropertyByName[edit]

protected function bool GetFloatPropertyByName (name prop, out float value)


GetIntPropertyByName[edit]

protected function bool GetIntPropertyByName (name prop, out int value)


GetStringPropertyByName[edit]

protected function bool GetStringPropertyByName (name prop, out string value)


init[edit]

function init ()


save[edit]

function save ()


saveInternal[edit]

protected function saveInternal ()


SetFloatPropertyByName[edit]

protected function bool SetFloatPropertyByName (name prop, float value)


SetIntPropertyByName[edit]

protected function bool SetIntPropertyByName (name prop, int value)


SetSpecialValue[edit]

function SetSpecialValue (name PropertyName, string NewValue)

Overrides: Object.SetSpecialValue


SetStringPropertyByName[edit]

protected function bool SetStringPropertyByName (name prop, string value)