-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
detectadas de las librerias SDL2, SDL_ttf, SFML y LodePNG. - Actualizada la versión de SFML a la versión 3.0.0. - Corregido un bug en el método de renderizado de sprites, el cual causava que en plataformas ARM de 32bits los sprites con su centro en coordenadas negativas no se renderizaban como es debido. - Añadido soporte para usar N'gine en Raspberry PI OS (Rapbian). Se han actualizado todos los templates, herramientas y ejemplos para su uso en esta plataforma. - Incluidos dos scripts de instalación de las librerías necesarias para Linux Mint y Raspberry OS. Atención! El uso de estos scripts instalara en el sistema las librerías usadas para compilar y usar esta versión de N'gine y sus proyectos, sobrescribiendo las versiones que se encuentren instaladas en el sistema.
- Loading branch information
1 parent
9b8537c
commit 86052cb
Showing
512 changed files
with
9,958 additions
and
2,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Copyright (C) 2007-2023 Laurent Gomila - [email protected] | ||
|
||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. | ||
|
||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: | ||
|
||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. | ||
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. | ||
3. This notice may not be removed or altered from any source distribution. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.13.0-stable o superior | ||
Requiere N'gine 1.14.0-stable o superior | ||
(c) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
|
@@ -21,7 +21,7 @@ | |
Requiere SDL2_TTF (2.20.2) - 64-bits | ||
http://www.libsdl.org/download-2.0.php | ||
Requiere SFML (2.5.1) - 64-bits | ||
Requiere SFML (3.0.0) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20220717) | ||
|
@@ -95,9 +95,15 @@ bool Demo::Awake() { | |
#endif | ||
ngn->graphics->Update(); | ||
|
||
// Usa el archivo empaquetado de datos si es la version release | ||
#if defined (MODE_RELEASE) | ||
if(!ngn->load->SetPackage("data.pkg", "0123456789ABCDEF")) return false; | ||
#endif | ||
|
||
// Muestra la version de la libreria en la consola | ||
#if defined (MODE_DEBUG) | ||
ngn->log->Message(ngn->system->GetVersion() + " started successfully!"); | ||
ngn->log->Message("Versions check:\n" + ngn->system->GetVersion()); | ||
ngn->log->Message("N'gine started successfully!"); | ||
#endif | ||
|
||
// Inicializacion completada con exito | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.13.0-stable o superior | ||
Requiere N'gine 1.14.0-stable o superior | ||
(c) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
|
@@ -21,7 +21,7 @@ | |
Requiere SDL2_TTF (2.20.2) - 64-bits | ||
http://www.libsdl.org/download-2.0.php | ||
Requiere SFML (2.5.1) - 64-bits | ||
Requiere SFML (3.0.0) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20220717) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.13.0-stable o superior | ||
Requiere N'gine 1.14.0-stable o superior | ||
(c) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
|
@@ -20,7 +20,7 @@ | |
Requiere SDL2_TTF (2.20.2) - 64-bits | ||
http://www.libsdl.org/download-2.0.php | ||
Requiere SFML (2.5.1) - 64-bits | ||
Requiere SFML (3.0.0) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20220717) | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.