{"id":27900561,"url":"https://github.com/h-d-owl/variable-storage","last_synced_at":"2025-08-03T23:34:27.131Z","repository":{"id":287026859,"uuid":"961322168","full_name":"H-D-OWL/Variable-Storage","owner":"H-D-OWL","description":"Adds a structure and a set of functions that allow you to write multiple pieces of data to a single structure, and then retrieve any written data from it.","archived":false,"fork":false,"pushed_at":"2025-04-09T15:06:55.000Z","size":51,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T09:05:14.493Z","etag":null,"topics":["blueprint","blueprint-plugin","blueprints","cpp","game-dev","game-developement","game-developer","game-development","game-engine","gamedevelopment","plugin","plugin-development","ue5","ue5-plugin","unreal","unreal-engine","unreal-engine-5","unreal-engine-plugin","unrealengine","unrealengine5"],"latest_commit_sha":null,"homepage":"https://hd-owl.itch.io","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/H-D-OWL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-04-06T09:10:03.000Z","updated_at":"2025-06-16T13:16:39.000Z","dependencies_parsed_at":"2025-04-09T16:34:40.240Z","dependency_job_id":null,"html_url":"https://github.com/H-D-OWL/Variable-Storage","commit_stats":null,"previous_names":["h-d-owl/variable-storage"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/H-D-OWL/Variable-Storage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/H-D-OWL%2FVariable-Storage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/H-D-OWL%2FVariable-Storage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/H-D-OWL%2FVariable-Storage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/H-D-OWL%2FVariable-Storage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/H-D-OWL","download_url":"https://codeload.github.com/H-D-OWL/Variable-Storage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/H-D-OWL%2FVariable-Storage/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268628389,"owners_count":24280952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"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":["blueprint","blueprint-plugin","blueprints","cpp","game-dev","game-developement","game-developer","game-development","game-engine","gamedevelopment","plugin","plugin-development","ue5","ue5-plugin","unreal","unreal-engine","unreal-engine-5","unreal-engine-plugin","unrealengine","unrealengine5"],"created_at":"2025-05-05T20:17:10.934Z","updated_at":"2025-08-03T23:34:26.642Z","avatar_url":"https://github.com/H-D-OWL.png","language":"C++","readme":"# Variable Storage\n## Description\nThe Variable Storage plugin provides a structure and a set of functions that allow you to write multiple data into a single structure and then retrieve any written data from it.\n\n## Requirement\n\nTarget version : UE5.0 ～ 5.5\n\nTarget platform : Windows\n\n## Warning\n  - Variable Storage can only contain these data types: **Bool, Byte, Int32, Int64, Float, Name, String, Text, Vector, Rotator, Transform, Soft Object, Soft Class, Linear Color, Timespan.**\n  - **Data names cannot be repeated in Variable Storage.** When merging Variable Storage structures, data with the same name will replace each other.\n\n## Content\n* Variable Storage Structure\n  - Contains data with unique names.\n\n![Снимок 6](https://github.com/user-attachments/assets/c618f2b2-d27d-4ee2-bc70-9f47c4b46150)\n\n* Set Data To Variable Storage \n  - Writes data to the variable store under the name specified in \"Data name\".\n\n![Снимок 1](https://github.com/user-attachments/assets/09176942-532c-4059-9ea6-b80940fcd74d)\n\n* Set Data To Variable Storage (Array)\n  - Writes an array of data to the variable store under the name specified in \"Data Name\".\n\n![Снимок 2](https://github.com/user-attachments/assets/ee84a2f2-2b4a-4a44-9679-327af34b8a6e)\n\n* Get Data To Variable Storage\n  - Gets data from the variable store with the name specified in \"Data name\".\n\n![Снимок 3](https://github.com/user-attachments/assets/0c579df6-e967-4a05-8e7b-27151ec51123)\n\n* Get Data To Variable Storage (Array)\n  - Gets Array data from the variable store with the name specified in \"Data name\".\n  \n![Снимок 4](https://github.com/user-attachments/assets/4fef224e-1ed1-4880-9f8f-80e6f93a0f6b)\n\n* Multi Append Variable Storage\n  - Combines an array of Variable Storage structures into a single Variable Storage structure.\n\n![Снимок 5](https://github.com/user-attachments/assets/f7c8feb2-c89d-4bcc-b377-4a289fe63bdb)\n\n* Example implementation:\n\n![Снимок 7](https://github.com/user-attachments/assets/79dad73e-24ff-4de0-9acd-c406ff732f82)\n\n* Update history:\n  - 1.1:\n    - Fixed some bugs.\n    - The variable storage can now contain new data types: Soft Object, Soft Class, Timespan.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh-d-owl%2Fvariable-storage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fh-d-owl%2Fvariable-storage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh-d-owl%2Fvariable-storage/lists"}