Closed
Description
If you are really interested in this project and want to use it (or at least do some things with it), you can request new features by creating an issue. Here is small guide how to do this to make developers life easier and get positive feedback:
- Check if this feature already in list on project's trello board. If it is, this means that I will implement it in the future
- Describe feature in depth: what should it do, should it be a component, provide editor-API, be cross-platform?
- Leave a link to already existing solutions (if any) or reference to other applications which done it and have good interface
- Put some code snippets of usage, for example, if you request
saving texture to a file
, you can write it as below:
// feature: save texture to a file
auto texture = camera->GetTexture();
FileManager::SaveImage("path/to.texture", texture); // writing data to a file
I promise that I will consider every suggestion and try my best to implement it as soon as possible. If you really want to see it in the engine, create a pull request and I will definitely review it.