{"id":13744201,"url":"https://github.com/away3d/away3d-core-openfl","last_synced_at":"2026-03-14T06:04:09.575Z","repository":{"id":3171616,"uuid":"4202831","full_name":"away3d/away3d-core-openfl","owner":"away3d","description":"Away3D engine for OpenFL","archived":false,"fork":false,"pushed_at":"2017-03-14T17:15:48.000Z","size":2256,"stargazers_count":165,"open_issues_count":29,"forks_count":41,"subscribers_count":36,"default_branch":"master","last_synced_at":"2025-05-09T02:41:02.813Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Haxe","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/away3d.png","metadata":{"files":{"readme":"README.markdown","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}},"created_at":"2012-05-02T12:38:30.000Z","updated_at":"2024-09-17T19:03:46.000Z","dependencies_parsed_at":"2022-09-05T01:01:54.980Z","dependency_job_id":null,"html_url":"https://github.com/away3d/away3d-core-openfl","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/away3d/away3d-core-openfl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/away3d%2Faway3d-core-openfl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/away3d%2Faway3d-core-openfl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/away3d%2Faway3d-core-openfl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/away3d%2Faway3d-core-openfl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/away3d","download_url":"https://codeload.github.com/away3d/away3d-core-openfl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/away3d%2Faway3d-core-openfl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27772063,"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-12-16T02:00:10.477Z","response_time":57,"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-08-03T05:01:05.025Z","updated_at":"2025-12-16T21:51:48.476Z","avatar_url":"https://github.com/away3d.png","language":"Haxe","funding_links":[],"categories":["3D Engines","Frameworks"],"sub_categories":["Away3D"],"readme":"# THIS REPOSITORY HAS NOW MOVED !!!!!!\n\n## Please take a look at... \n## http://github.com/openfl/away3d\n## ...for the latest OpenFL implementation of Away3D\n\n==============================================================================\n\n## Away3D for OpenFL\n\n## Introduction\nAway3D for OpenFl is a port of the Flash Away3D engine, enabling targetting Flash, Neko, HTML5 and native CPP builds for OSX, Windows, iOS, Android, etc. \n\n## Features\n- AGLSL conversion of AGAL code to support OpenGLES.\n- Targets cross platform - web, mobile, desktop\n- Texture mapping with mipmapping\n- Lighting\n- Shadow mapping (in most cases)\n- Model loading: 3DS, AWD, MD5, MD2, DAE\n- Skeleton animation\n- Skinned animation\n- 3D particle system\n- Line drawing (Segments \u0026 SegmentSets)\n\n## Installation\n\n    haxelib install away3d\n    \n## Getting Started\n\n    lime create away3d      // To list all of the available examples\n    lime create away3d:Basic_View      // To install the Basic_View example\n    lime create away3d:Basic_View /destinationFolder  // To install the example to a specific location\n    \nA typical project.xml file would look as follows. Each example in the away3d-examples repository has it's own project.xml.\n\n    \u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n    \u003cproject\u003e\n        \n        \u003cmeta title=\"Basic View Away3D OpenFL\" package=\"away3d.examples.BasicView\" version=\"1.0.0\" /\u003e\n        \u003capp main=\"Basic_View\" file=\"Basic_View\" path=\"Export\" /\u003e\n        \n        \u003cwindow width=\"1024\" height=\"700\" if=\"desktop\"/\u003e\n        \u003cwindow width=\"0\" height=\"0\" if=\"html5\" /\u003e\n        \u003cwindow orientation=\"landscape\" vsync=\"true\" if=\"cpp\"/\u003e\n        \u003cwindow fps=\"60\" hardware=\"true\" allow-shaders=\"true\" require-shaders=\"true\" depth-buffer=\"true\" stencil-buffer=\"true\"  background=\"#000000\"  /\u003e\n            \n        \u003csource path=\"src\" /\u003e\n        \n        \u003chaxelib name=\"format\" if=\"html5\" /\u003e\n        \u003chaxelib name=\"away3d\" /\u003e\n        \u003chaxelib name=\"openfl\" /\u003e\n        \n        \u003cassets path=\"embeds\" exclude=\"away3d.svg\" /\u003e\n\n        \u003cicon path=\"embeds/away3d.svg\" /\u003e\n        \n        \u003chaxedef name=\"source-map-content\" if=\"html5\" /\u003e\n        \u003chaxedef name=\"dom\" if=\"html5\" /\u003e\n\n        \u003candroid minimum-sdk-version=\"10\" /\u003e\n\n    \u003c/project\u003e\n\n## Building Examples\nTo build an example, 'cd' to the example's folder e.g. Basic_View and use the following.\n\n\topenfl test \u003ctarget\u003e     - where target is html5, windows, mac, neko, ios, android, etc\n\t\nNOTE: When using OpenFL 3.x and the non-html5 targets, please add the -Dlegacy option as Away3D doesn't fully support OpenFL-next for CPP targets as yet.\n\n\topenfl test mac -Dlegacy\n\t\n## Dependencies\nRequires OpenFL 3.x \u0026 Lime 2.x (ideally OpenFL 3.5.3 \u0026 Lime 2.8.3 or later for both).\n\n## License\n\nCopyright 2014 The Away3D Team\n\nThe Away3D OpenFL port is free, open-source software under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faway3d%2Faway3d-core-openfl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faway3d%2Faway3d-core-openfl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faway3d%2Faway3d-core-openfl/lists"}