Game engine
Game engines are software frameworks for game development. Game engines do the heavy lifting for developers so they can focus on other aspects of game development.
-
- Sign up for GitHub or sign in to edit this page
Here are 2,441 public repositories matching this topic...
Cocos2d-x is a suite of open-source, cross-platform, game-development tools used by millions of developers all over the world.
-
Updated
Oct 16, 2019 - 37 commits
- C++
8th wall dialog is a good example to follow (open link on iOS 13)
https://apps.8thwall.com/8w/jini/
requestPermision has to be called in a handler triggered by a user gesture
buttonEl.addEventlistener('click', function () {
DeviceMotionEvent.requestPermission().then(response => {
if (response == 'granted') {
window.addEventListener('devicemotion', (e) => {
I think it's unexpected. I have to use Detector.canCollide on my own when I want to use Query.collides. I think it should be changed or at least mention in documentation.
NOTE: Undocumented parts of the source code you will most likely find by going through the openage c++/python reference and watch out for empty classes/members/functions/etc.
The last days I was setting up doxygen/sphinx+breathe to properly generate a nice documentation for
CRYENGINE is a powerful real-time game development platform created by Crytek.
-
Updated
Oct 16, 2019 - 9 commits
- C++
This will be simple event that merely ends the turn and also removes the player from ctx.playOrder
.
Engineer Selection Priority: 5
Harvester Selection Priority: 7
Basically, change it so engineers are selected before harvesters. This is in response to a rare issue I've had, and recently learned others do too, that in a panic someone sends their harvesters instead of their engineer.
I'm not 100% sure the repercussions of this (what is priority 6?), but the goal is to change it so, when h
:video_game: :pencil: A list of Game Development resources to make magic happen.
-
Updated
Oct 16, 2019 - 353 commits
I came across this issue when I decided to profile my (in progress) game and discovered I was generating a ton of VertexBufferBinding[] arrays during the
Fast and lightweight WebGL game engine
-
Updated
Oct 16, 2019 - 8 commits
- JavaScript
Issue type
- Bug or legacy issue (not sure)
Minetest version
0.4.17.1
Summary
The keybindings menu has that weird warning at the top:
(If this menu screws up, remove stuff from minetest.conf)
Is this warning still relevant? I think this warning has been in Minetest since ages, yet it's still there.
If the warning is still relevant, please write down (in this
There is currently no documentation for which built-in components are supported by render passes, and how to use them. For example, Tint can be used in 3d passes to tint vertexes, or in 2d passes to multiply a sprite's color by a tint.
@torkleyy suggests adding comments to the specific render pass struct (amethyst/amethyst#1756). I opened a separate ticket since this app
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
-
Updated
Oct 16, 2019 - 2 commits
- C#
Egret is a brand new open mobile game and application engine which allows you to quickly build mobile games and apps on Android,iOS and Windows.
-
Updated
Oct 16, 2019 - 6 commits
- JavaScript
Why:
For example, say you go and look at Geometry::SetDrawRange method. There is argument of PrimitiveType type, which is enum defining whether it's a triangle list, line list, etc. But the list of possible values is not available through documentation -- doxygen is igno
Modern C++14 game engine with Vulkan support, fully featured editor and C# scripting
-
Updated
Oct 15, 2019 - 4 commits
- C#
a fresh & lightweight javascript game engine
-
Updated
Oct 16, 2019 - 4 commits
- JavaScript
Unity3D Client And C# Server Framework
-
Updated
Oct 16, 2019 - 1 commits
- C#
Lightweight and modular C++11/C++14 graphics middleware for games and data visualization
-
Updated
Oct 16, 2019 - 7 commits
- C++
A hand-crafted 2D game library in Go
-
Updated
Oct 16, 2019 - 866 commits
- Go
The Urho UI provides a method to set the cursor image however Turbobadger doesn't offer this so this functionality went away with SystemUI.
Gaming meets modern C++ - a fast and reliable entity-component system (ECS) and much more
-
Updated
Oct 16, 2019 - 988 commits
- C++
A fast, scalable, distributed game server engine/framework for C++, include actor library, network library,can be used as a real time multiplayer game engine ( MMO RPG/MOBA ), which support C#/Lua script/ Unity3d, Cocos2dx and plan to support Unreal.
-
Updated
Oct 16, 2019 - 4 commits
- C++
- When I try to import a model (those models are attached to this post), I am getting the below error.
Error:An exception occurred while generating the template.
Object reference not set to an instance of an object.
at Xenko.Assets.Models.ModelAssetImporter.Import(UFile localPath, AssetImporterParameters importParameters)
at Xenko.Assets.Presentation.Templates.ModelFromFileTemplateGen
At the moment, embedded texture data in .bam files is stored uncompressed. This makes these .bam files unnecessarily massive. It would be useful if Panda could use a lossless compression algorithm, such as PNG or ZLib, to store embedded textures.
Godot version:
3.1.1 (also in 3.2 alpha 1 release)
OS/device including version:
Windows 10 /PC
Issue description:
Trying to use an exported variable (integer) to only allow for odd numbers between 3 and 11 to be settable in the editor window.
using
export(int, 3, 11, 2) var grid_height = 3
does not work since it turns it into a list of only even numbers and 11 at the end. (