I don't need to test my programs. I have an error-correcting modem.

UE3:WebAdminSettings (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site

Jump to: navigation, search
UT3 Object >> Settings >> WebAdminSettings

Contents

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

[edit] Instance functions

[edit] GetFloatPropertyByName

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


[edit] GetIntPropertyByName

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


[edit] GetStringPropertyByName

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


[edit] init

function init ()


[edit] save

function save ()


[edit] saveInternal

protected function saveInternal ()


[edit] SetFloatPropertyByName

protected function bool SetFloatPropertyByName (name prop, float value)


[edit] SetIntPropertyByName

protected function bool SetIntPropertyByName (name prop, int value)


[edit] SetSpecialValue

function SetSpecialValue (name PropertyName, string NewValue)

Overrides: Object.SetSpecialValue


[edit] SetStringPropertyByName

protected function bool SetStringPropertyByName (name prop, string value)