{"id":16577907,"url":"https://github.com/compufox/trivial-gamekit-timeline","last_synced_at":"2026-03-09T11:03:31.492Z","repository":{"id":71050519,"uuid":"340561797","full_name":"compufox/trivial-gamekit-timeline","owner":"compufox","description":"animation timeline module for trivial-gamekit","archived":false,"fork":false,"pushed_at":"2021-02-24T08:54:50.000Z","size":8,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-24T00:39:29.164Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","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/compufox.png","metadata":{"files":{"readme":"README.md","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":"2021-02-20T04:31:55.000Z","updated_at":"2021-05-24T12:42:00.000Z","dependencies_parsed_at":"2023-06-07T16:45:15.473Z","dependency_job_id":null,"html_url":"https://github.com/compufox/trivial-gamekit-timeline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/compufox/trivial-gamekit-timeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compufox%2Ftrivial-gamekit-timeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compufox%2Ftrivial-gamekit-timeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compufox%2Ftrivial-gamekit-timeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compufox%2Ftrivial-gamekit-timeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/compufox","download_url":"https://codeload.github.com/compufox/trivial-gamekit-timeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compufox%2Ftrivial-gamekit-timeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30291847,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"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":[],"created_at":"2024-10-11T22:12:35.916Z","updated_at":"2026-03-09T11:03:31.466Z","avatar_url":"https://github.com/compufox.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# trivial-gamekit-timeline\n### _ava fox_\n\na module for trivial-gamekit.\n\nadds in the concept of \"timelines\" which keyframes can be added into, allowing for easy, programmatic animations on any object\n\nby default interpolates between keyframe values with `gamekit:lerp` which handles `gamekit:vec2`, `gamekit:vec3`, `gamekit:vec4`, `gamekit:quat`, and `number` \n\n## Installation\n\n```shell\n$ git clone https://github.com/compufox/trivial-gamekit-timeline ~/common-lisp/\n$ ros run # (or run whichever lisp you use)\n* ;; install the quicklisp distro that houses trivial-gamekit\n* (ql-dist:install-dist \"http://bodge.borodust.org/dist/org.borodust.bodge.txt\")\n* ;; ready to go!\n```\n\n## Example \n\nload example into lisp:\n```lisp\n* ;; load example\n* (ql:quickload :trivial-gamekit-timeline-example)\n* (gamekit.timeline-example:run)\n```\n\nsource code at: `example.lisp`\n\n\n## API\n\n`(make-timeline \u0026key loop)`\n\ncreates a timeline\n\nif LOOP is non-nil the timeline will loop after completion\n\n---\n\n`(make-keyframe timeline frame \u0026key object slot event target (process-fn #'gamekit:lerp))`\n\ncreates a keyframe at FRAME and adds it into TIMELINE\n\n\nOBJECT and SLOT must be passed in together.\n\nOBJECT is any standard lisp object\n\nSLOT is a symbol representing a slot in OBJECT\n\nEVENT is a function that accepts no arguments\n\nTARGET is the target value that the SLOT of OBJECT should be by FRAME\n\nPROCESS-FN is the function that returns the new value to be set in SLOT of OBJECT, defaults to gamekit:lerp.\n\nPROCESS-FN should accept 3 parameters: original value, target value, percentage between. it should return the current value between the two points\n\n---\n\n`(play-timeline timeline)`\n\nplay TIMELINE\n\n---\n\n`(pause-timeline timeline)`\n\npause TIMELINE\n\n---\n\n`(stop-timeline timeline)`\n\nstop TIMELINE\n\n---\n\n`(restart-timeline timeline)`\n\nrestart TIMELINE\n\n---\n\n`(frame-advance timeline \u0026optional (amount 1))`\n\nadvance TIMELINE by AMOUNT of frames\n\nAMOUNT defaults to 1\n\n---\n\n`(loopingp timeline)`\n\nreturns whether or not a timeline is set to loop\n\n---\n\n`(stoppedp timeline)`\n\nreturns whether or not a timeline is currently stopped\n\n---\n\n`(playingp timeline)`\n\nreturns whether or not a timeline is currently playing\n\n---\n\n## License\n\nMIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompufox%2Ftrivial-gamekit-timeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcompufox%2Ftrivial-gamekit-timeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompufox%2Ftrivial-gamekit-timeline/lists"}