{"id":29738695,"url":"https://github.com/rossogames/rossoforge-scenes","last_synced_at":"2026-05-19T09:03:45.424Z","repository":{"id":305335935,"uuid":"1010823219","full_name":"rossogames/Rossoforge-Scenes","owner":"rossogames","description":"A lightweight and flexible service that centralizes scene loading, unloading, and transitions, ensuring smooth and efficient navigation between scenes","archived":false,"fork":false,"pushed_at":"2026-01-17T21:04:06.000Z","size":134,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-18T07:52:20.451Z","etag":null,"topics":["scene","transition","transitions","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rossogames.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-29T21:44:46.000Z","updated_at":"2025-12-06T20:18:54.000Z","dependencies_parsed_at":"2025-10-05T17:21:12.607Z","dependency_job_id":"eade613a-a712-43f6-bd21-8d6fd74981d5","html_url":"https://github.com/rossogames/Rossoforge-Scenes","commit_stats":null,"previous_names":["rossogames/rossoforge-scenes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rossogames/Rossoforge-Scenes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rossogames%2FRossoforge-Scenes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rossogames%2FRossoforge-Scenes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rossogames%2FRossoforge-Scenes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rossogames%2FRossoforge-Scenes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rossogames","download_url":"https://codeload.github.com/rossogames/Rossoforge-Scenes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rossogames%2FRossoforge-Scenes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33209420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T07:54:09.561Z","status":"ssl_error","status_checked_at":"2026-05-19T07:54:08.508Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["scene","transition","transitions","unity"],"created_at":"2025-07-25T19:01:49.088Z","updated_at":"2026-05-19T09:03:45.413Z","avatar_url":"https://github.com/rossogames.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rosso Games\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cimg src=\"https://github.com/rossogames/Rossoforge-Scenes/blob/main/logo.png?raw=true\" alt=\"Rossoforge\" width=\"64\"/\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003ch2\u003eRossoforge - Scenes\u003c/h2\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n**Rossoforge-Scenes** A lightweight and flexible service that centralizes scene loading, unloading, and transitions, ensuring smooth and efficient navigation between scenes. It is designed to simplify and streamline scene management in Unity projects\n\n#\n**Version:** Unity 6 or higher\n\n**Tutorial:** [Pending...]\n\n**Dependencies:**\n* [Rossoforge-Core](https://github.com/rossogames/Rossoforge-Core.git)\n* [Rossoforge-Utils](https://github.com/rossogames/Rossoforge-Utils.git)\n* [Rossoforge-Events](https://github.com/rossogames/Rossoforge-Events.git)\n* [Rossoforge-Services](https://github.com/rossogames/Rossoforge-Services.git)\n\n#\n\n```csharp\n// Setup\nServiceLocator.SetLocator(new DefaultServiceLocator());\n\nvar eventService = new EventService();\nvar sceneService = new SceneService(_sceneTransitionData);\n\nServiceLocator.Register\u003cIEventService\u003e(eventService);\nServiceLocator.Register\u003cISceneService\u003e(sceneService);\nServiceLocator.Initialize();\n\n// Anywhere in your code\nvar myService = ServiceLocator.Get\u003cISceneService\u003e();\n\n// Change scene displaying transition scene\n_sceneService.ChangeScene(sceneName);\n_sceneService.ChangeScene(sceneName, _customSceneTransitionData);\n\n// Load and undload scenes immediately without showing transition effect\n_sceneService.UnloadScene(sceneName);\n_sceneService.LoadScene(sceneName, LoadSceneMode.Additive);\n\n// Reload the current scene displaying transition scene\n_sceneService.RestartScene();\n_sceneService.RestartScene(_customSceneTransitionData);\n\n// Load the previous scene displaying transition scene\n_sceneService.GoBackScene();\n_sceneService.GoBackScene(_customSceneTransitionData);\n```\n\n#\nThis package is part of the **Rossoforge** suite, designed to streamline and enhance Unity development workflows.\n\nDeveloped by Agustin Rosso\nhttps://www.linkedin.com/in/rossoagustin/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frossogames%2Frossoforge-scenes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frossogames%2Frossoforge-scenes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frossogames%2Frossoforge-scenes/lists"}