I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
Difference between revisions of "UE3:UIResourceDataProvider (UDK)"
(Talk) |
m (1 revision: class descriptions for UDK January update (part 6)) |
||
(One intermediate revision by one other user not shown) | |||
Line 20: | Line 20: | ||
Child classes may override or ignore this flag by using different logic in GetSupportedDataFields(). | Child classes may override or ignore this flag by using different logic in GetSupportedDataFields(). | ||
+ | |||
+ | ====bSkipDuringEnumeration==== | ||
+ | '''Type:''' [[bool]] | ||
+ | |||
+ | '''[[Variables#Modifiers|Modifiers]]:''' config | ||
+ | |||
+ | Controls whether the object should be used or not. This is the only way to remove a per object config from the list | ||
===Default values=== | ===Default values=== | ||
Line 34: | Line 41: | ||
{{code|event '''InitializeProvider''' ([[bool]] '''bIsEditor''')}} | {{code|event '''InitializeProvider''' ([[bool]] '''bIsEditor''')}} | ||
− | + | Provides the data provider with the chance to perform initialization, including preloading any content that will be needed by the provider. | |
+ | |||
+ | '''Parameters:''' | ||
+ | * ''bIsEditor'' - TRUE if the editor is running; FALSE if running in the game. |
Latest revision as of 05:51, 17 January 2010
Object >> UIRoot >> UIDataProvider >> UIPropertyDataProvider >> UIResourceDataProvider |
- Package:
- Engine
- Implemented interfaces:
- UIListElementCellProvider, UIListElementProvider
- Direct subclasses:
- OnlinePlaylistGameTypeProvider, OnlinePlaylistProvider, UICharacterSummary, UIDataProvider_MenuItem, UIGameInfoSummary, UIMapSummary, UIWeaponSummary, UTUIResourceDataProvider
- This class in other games:
- UT3
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
Base class for data providers which provide data for static game resources.
Properties[edit]
bDataBindingPropertiesOnly[edit]
Type: bool
Controls which properties this data provider will expose as data fields. Specify TRUE to only allow properties marked with the 'databinding' keyword to be exposed.
Child classes may override or ignore this flag by using different logic in GetSupportedDataFields().
bSkipDuringEnumeration[edit]
Type: bool
Modifiers: config
Controls whether the object should be used or not. This is the only way to remove a per object config from the list
Default values[edit]
Property | Value |
---|---|
ComplexPropertyTypes[2] | Class'Core.DelegateProperty' |
Events[edit]
InitializeProvider[edit]
Provides the data provider with the chance to perform initialization, including preloading any content that will be needed by the provider.
Parameters:
- bIsEditor - TRUE if the editor is running; FALSE if running in the game.