Integrating UE into Native Xcode iOS Projects
Integrate UE into native Xcode iOS projects, allowing the native Xcode project to drive the engine as needed and enabling bidirectional communication, launching the Unreal Engine and running games within a regular App.
Demo Video:
This solution has been validated, and the Xcode side can operate independently of the engine source code.
Human Posture Tracking in UE
Implementing facial, posture, and hand tracking in UE using a regular camera:
Tracking data can be accessed directly in UE, which can be used to develop motion-sensing games.
Shader Compression Scheme Based on Dictionary
Size comparison of ushaderbytecode in actual projects (unit M):
Android_ASTC | IOS | WindowsNoEditor | |
---|---|---|---|
LZ4 | 172 | 314 | 95.7 |
ZSTD | 37.6 | 53.7 | 20.2 |
Dict | 4.53 | 9.48 | 2.4 |
Using ZSTD + dictionary for Shader compression improves the compression ratio by about 65~80% compared to the engine’s default LZ4.
Runtime decompression time:
For specific implementation ideas, see:
- Shader Compression Scheme Based on ZSTD Dictionary
- An Efficient ZSTD Shader Dictionary Training Scheme
Pak’s Runtime Reorganization Hot Update Scheme
Based on client version detection and update scheme, Pak’s runtime reorganization.
Advantages:
- Reduces management costs on the publishing side
- Different versions of the Client share the same published version
- Maximum reuse of local resources
- Local merging of Pak reduces the overhead of excessive Pak files
Multi-stage Automated Resource Check Scheme
Supports intervention in various aspects of the UE resource production process. It ensures regulatory checks of resources during editing, submission, CI/CD scanning, and packaging stages, ensuring that the resources entering the package are compliant.
For detailed feature support, see:
- UE Resource Compliance Check Tool ResScannerUE
- Customization of Property Panels in Unreal Engine
- Automated Resource Check Practice Based on ResScannerUE
- Multi-stage Automated Resource Check Scheme in UE
It is a very powerful and comprehensive resource check tool.
Precise and Flexible Base Package Splitting Scheme
Supports non-intrusive implementation for precise base package splitting. It allows for the precise division of AssetRegistry, ShaderLibrary, etc., and can be non-intrusively integrated into the default packaging process of UE.
Manage all resources in the project except for pakchunk0:
It is a non-intrusive implementation, requiring no modifications to the packaging process. Simply starting the default packaging of UE will automatically handle everything. There is no need to modify the engine, and all features are implemented purely as plugins.
See the articles for further details: