View on GitHub

The-Creator-3D

The Creator 3D

The Creator 3D is a 3D engine. It’s been created for educational purposes by videogame development students studying at CITM. We’ve used Unity as a reference to create our engine.

TEAM

TeamImage

Adrià Martín: Adrià has worked on: Console, Editor, Data(JSON, Binary), Hardware Window, Improvements on many Windows, GameObjects + Components structure, Rendering(A lot of work here), Resource Management(Assets, scenes, etc…), Editor and Game Camera, Play/Pause/Stop, Skybox, Mono implementation, Scripting, Bugfixing.

Sergi Pérez: Sergi has worked on: First implementation of ImGui, Appveyor, Performance Window, Config Window, Primitives, Importing information, Control remapping, Transformation Component, GameTimer(Independent dt for game modules, etc…), Guizmo, Mouse Picking, Engine Text/Script editor implementation, Website, Bugfixing.

Engine Core

There are more systems in the engine, including a lot of debug information that might help you understand how the engine works. Feel free to check the code, fork it, or ask us anything you want.

Scripting System

For this subject we had to create an extra sub-system. In our case we’ve made a Scripting system.

Ours is a Scripting System uses C#. We are using C# because it is widely used(Unity also implements it) and it provides good performance. It also targets game development.

To implement scripting with C# in our engine we are using Mono. To make the scripting system work, we have made copies of some of our C++ classes, and ported them to C#. This allows mono to compile the scripts we write in C#, and pass the data to our actual C++ classes.

We also implemented a TextEditor, so the user is able to edit and create scripts within the editor.

TextEditor: TextEditor

Script Example on Scene: SceneGif

Video Example

Video Example

Download & Repository

Here you can find a link to the latest release

You can check the repository here

If you find any issues you can report them here

Credits

The engine has been developed by:

Adrià Martín: Adrià’s Github

Sergi Pérez: Sergi’s Github

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/