Changeset 26 for trunk/OpenFeint/OpenFeintSettings.h
- Timestamp:
- 2010-05-28 07:39:52 (2 years ago)
- File:
-
- 1 edited
-
trunk/OpenFeint/OpenFeintSettings.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/OpenFeint/OpenFeintSettings.h
r22 r26 122 122 //////////////////////////////////////////////////////////// 123 123 extern const NSString* OpenFeintSettingPromptToPostAchievementUnlock; 124 125 //////////////////////////////////////////////////////////// 126 /// 127 /// @type NSString 128 /// @default nil 129 /// @behavior If this setting is present, then OpenFeint will attempt to load nibs with the given suffix 130 /// before attempting to load nibs with its default suffix ("Of"). You can use this if you want 131 /// to override specific controller nibs within OpenFeint with your own. 132 /// 133 //////////////////////////////////////////////////////////// 134 extern const NSString* OpenFeintSettingOverrideSuffixString; 135 136 //////////////////////////////////////////////////////////// 137 /// 138 /// @type NSString 139 /// @default nil 140 /// @behavior If this setting is present, then OpenFeint will attempt to instantiate classes with the given 141 /// prefix before attempting to instantiate classes with its default prefix ("OF"). You can use 142 /// this if you want to override specific UI classes within OpenFeint with your own. 143 /// 144 //////////////////////////////////////////////////////////// 145 extern const NSString* OpenFeintSettingOverrideClassNamePrefixString; 146 147 //////////////////////////////////////////////////////////// 148 /// 149 /// @type NSString 150 /// @default nil 151 /// @behavior If this setting is present and set to YES blobs will not be compressed before uploaded to the cloud. 152 /// It is recomended to use this only if your data is already in a very compact format that will not compress. 153 // To find out how well your data compresses pass in the OpenFeintSettingOutputCloudStorageCompressionRatio setting. 154 /// 155 /// NOTE: This flag applies to ALL of your cloud storage. You can not selectively use compression. If you're not sure 156 /// if you should use compression or not then it's safest to leave it enabled 157 /// 158 //////////////////////////////////////////////////////////// 159 extern const NSString* OpenFeintSettingDisableCloudStorageCompression; 160 161 //////////////////////////////////////////////////////////// 162 /// 163 /// @type NSString 164 /// @default nil 165 /// @behavior If this setting is present and set to YES then OpenFeint will output the compression ratio of all compressed blobs to the console 166 /// 167 //////////////////////////////////////////////////////////// 168 extern const NSString* OpenFeintSettingOutputCloudStorageCompressionRatio; 169
Note: See TracChangeset
for help on using the changeset viewer.