{"id":19272106,"url":"https://github.com/ogstudio/domino","last_synced_at":"2026-06-15T12:31:27.973Z","repository":{"id":92278424,"uuid":"55744141","full_name":"OGStudio/domino","owner":"OGStudio","description":"Domino like game","archived":false,"fork":false,"pushed_at":"2016-04-25T10:11:51.000Z","size":1899,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-23T20:31:35.769Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OGStudio.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-04-08T02:35:58.000Z","updated_at":"2016-04-08T02:36:19.000Z","dependencies_parsed_at":"2023-06-08T06:15:37.514Z","dependency_job_id":null,"html_url":"https://github.com/OGStudio/domino","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OGStudio/domino","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGStudio%2Fdomino","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGStudio%2Fdomino/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGStudio%2Fdomino/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGStudio%2Fdomino/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OGStudio","download_url":"https://codeload.github.com/OGStudio/domino/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGStudio%2Fdomino/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34363537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T20:35:25.967Z","updated_at":"2026-06-15T12:31:27.955Z","avatar_url":"https://github.com/OGStudio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nThis is a so-called empty project for Open Game Studio (OGS) Editor.\n\nOverview\n========\n\nThis project contains the bare minimum of what a normal OGS project could\ncontain. Its purpose is to serve as a starting point for all new projects\nand to explain OGS project hierarchy to newcomers.\n\nHierarchy\n=========\n.\n├── default.actions\n│\n│   Contains a list of actions. An action is a set of node property changes.\n│   In this case, it contains single action to rotate a scene node by 360\n│   degrees along Y axis for 1000 milliseconds.\n│\n├── default.compositor\n│\n│   Contains a list of materials. A material is a set of textures applied\n│   to a node's model.\n│   In this case, it contains diffuse and normal maps (textures) applied\n│   to the ball.\n│\n├── default.lights\n│\n│   Contains a list of lights. Only directional lights are supported at\n│   the moment.\n│   In this case, it contains a light with soft shadow map configuration.\n│\n├── default.scene\n│\n│   Contains a list of scene nodes and their relationship (parent-child).\n│   In this case, it contains:\n│   * light\n│   * camera\n│   * ball\n│\n├── default.sounds\n│\n│   Contains a list of sounds. Sound can be represented as a buffer\n│   and a stream. Buffer keeps its data in memory (suitable to replay\n│   clicks, selections and other short files), whereas stream reads data\n│   from a file continuously (suitable to replay a background music).\n│   In this case, it contains a sound buffer to replay on game start.\n│\n├── models\n│   │    \n│   │   Contains models in OpenSceneGraph format. You can use\n│   │   \"osgexport\" Blender exporter to generate it.\n│   │ \n│   └── ball.osgt\n│\n│       Ball model for the ball scene node.\n│\n├── pipeline\n│   │\n│   │   Contains shaders and other pipeline related files.\n│   │   In this case, the project uses standard pipeline, so the\n│   │   directory has no files.\n│   │\n│   └── textures\n│       │\n│       │   Contains PNG files that represent textures.\n│       │\n│       ├── ball_n.png\n│       │   \n│       │   Normal map (texture) for the ball material.\n│       │    \n│       └── ball_tex.png\n│\n│           Diffuse map (texture) for the ball material.\n│\n├── player.shortcuts\n│\n│   Contains a list of shortcuts for when the project is run\n│   by the Player.\n│   In this case, it specifies that LMB click triggers 'select'\n│   shortcut activation.\n│\n├── README\n│\n│   This file.\n│\n├── scripts\n│   │\n│   │   Contains Python scripts for scene nodes. Each script exports\n│   │   its own API into Environment that is shared among the engine\n│   │   and all scripts.\n│   │\n│   ├── Ball.py\n│   │\n│   │   Provides 'ball...moving' API to rotate the ball. Rotation is\n│   │   performed by the above mentioned rotation action.\n│   │\n│   └── Main.py\n│\n│       Subscribes to the space key press. When the key is pressed, it\n│       uses the above mentioned API to rotate the ball. Also, replays\n│       the above mentioned game start sound at the same time.\n│\n├── sounds\n│   │\n│   │   Contains sounds in OGG format.\n│   │\n│   ├── start.ogg\n│   │\n│   │   Sound to replay when the space key is pressed.\n│   │\n│   └── start.README\n│\n│       Explains where the sound file comes from.\n│\n└── src\n    │\n    │   Contains sources for necessary resources.\n    │\n    └── models.blend\n\n        Contains the ball model in Blender format. It was used to generate\n        the model itself and its normal map (texture).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogstudio%2Fdomino","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fogstudio%2Fdomino","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogstudio%2Fdomino/lists"}