{"id":13599574,"url":"https://github.com/keijiro/Funnel","last_synced_at":"2025-04-10T13:30:45.020Z","repository":{"id":12778235,"uuid":"15451753","full_name":"keijiro/Funnel","owner":"keijiro","description":"A Syphon server plugin for Unity","archived":false,"fork":false,"pushed_at":"2018-04-30T14:48:13.000Z","size":2083,"stargazers_count":122,"open_issues_count":0,"forks_count":17,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-04-02T19:55:35.214Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Objective-C","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/keijiro.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}},"created_at":"2013-12-26T11:46:46.000Z","updated_at":"2025-02-26T07:56:32.000Z","dependencies_parsed_at":"2022-09-14T12:21:42.141Z","dependency_job_id":null,"html_url":"https://github.com/keijiro/Funnel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FFunnel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FFunnel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FFunnel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FFunnel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keijiro","download_url":"https://codeload.github.com/keijiro/Funnel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248225705,"owners_count":21068078,"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","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-01T17:01:07.129Z","updated_at":"2025-04-10T13:30:44.021Z","avatar_url":"https://github.com/keijiro.png","language":"Objective-C","funding_links":[],"categories":["Objective-C"],"sub_categories":[],"readme":"# Important Notice\n\nThis project is going to be discontinued because a new Syphon plugin ([KlakSyphon]) has been released that provides a superset of the features in Funnel. Please consider migrating to the new plugin.\n\nhttps://github.com/keijiro/KlakSyphon\n\n[KlakSyphon]: https://github.com/keijiro/KlakSyphon\n\nFunnel\n======\n\n![Screenshot][Screenshot]\n\n*Funnel* is a Syphon server plugin for [Unity][Unity]. It allows Unity to share\nrendered frames with other applications that supports the [Syphon][Syphon]\nprotocol (e.g., [MadMapper][MadMapper], [VDMX][VDMX]) without introducing any\nperformance loss.\n\nCompatibility Note\n------------------\n\nThis version is redesigned and optimized for [the new OpenGL backend (OpenGL\nCore)][GLCore] and not compatible with the legacy OpenGL backend. If it's\nrequired to support legacy OpenGL, use [the legacy version][Legacy] instead.\n\nSystem Requirements\n-------------------\n\n- Mac OS X 10.8 or later\n- Unity 5.3 or later\n\nThis version only supports the 64-bit runtime and the OpenGL Core API mode.\n[The legacy version][Legacy] is available for legacy setups.\n\nSetting Up\n----------\n\n- Download and import [the plugin package][Package].\n- Add the Funnel script to a camera that's to be shared.\n\nThat's all! It automatically sets up a Syphon server and starts publishing\nrendered frames towards Syphon client applications.\n\nThe name of the Syphon server is set in the following manner:\n\n    [Process Name]-[Game Object Name]\n\nIt's useful to identify the server on the client side.\n\nProperties\n----------\n\n**Screen Width/Height, Anti Aliasing** - Configures the screen to be sent.\n\n**Discard Alpha** - Clears the alpha channel with 1.0 (completely opaque)\nbefore sending.\n\n**Render Mode** - Determines how the frame is shared.\n - Send Only - Sends the frame and doesn't keep it. The rendered frame is only\n   available on the client side.\n - Render To Target - Sends the frame and copies it to the render texture.\n - Preview On Game View - Sends the frame and display it on the Game view.\n\nLicense\n-------\n\nCopyright (C) 2013-2016 Keijiro Takahashi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[Screenshot]: http://keijiro.github.io/Funnel/screenshot.png\n[Legacy]:     https://github.com/keijiro/Funnel/tree/gllegacy\n[Inspector]:  http://keijiro.github.io/Funnel/inspector.png\n[Package]:    https://github.com/keijiro/Funnel/raw/master/Funnel.unitypackage\n[Unity]:      http://unity3d.com\n[Syphon]:     http://syphon.v002.info\n[VDMX]:       http://vidvox.net\n[MadMapper]:  http://madmapper.com\n[GLCore]:     http://docs.unity3d.com/Manual/OpenGLCoreDetails.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeijiro%2FFunnel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeijiro%2FFunnel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeijiro%2FFunnel/lists"}