You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been taking a look at implementing CoreLibs/object, as my game makes pretty heavy use of it. As far as I can see, there's nothing that's really specific to playdate in the CoreLibs implementation, aside from a couple places that use +=. I've replaced those two lines so that it'd work in Love, and just straight up copied it into playbit, and that seems to work, though I'm not really sure if that's what we'd want/are entitled to do given that the file is (c) Playdate, and there's this particular clause of the SDK License.
You will not:
...
- Use the SDK to develop applications for other platforms or to develop another SDK, without express written permission from Panic.
Though I'm not sure how it could really be reimplemented in any meaningful way that isn't just... rewording the existing CoreLibs implementation.
The text was updated successfully, but these errors were encountered:
@lyonbeckers I had emailed Panic about Playbit awhile back to see if I could take code from the SDK, but alas, they did not give me permission (and thus some loss of functionality after ee04a9d). So unfortunately we can't just copy CoreLibs/object with minor edits into Playbit, as it would violate the TOS as per the snippet you shared.
However as @gingerbeardman pointed out, we can start from the old blog post they found on Wayback Machine.
Also note: this is low priority for me right now since I don't use the object class in any of my projects, but I'd be happy to merge any PRs that implement it! 😄
I've been taking a look at implementing
CoreLibs/object
, as my game makes pretty heavy use of it. As far as I can see, there's nothing that's really specific to playdate in the CoreLibs implementation, aside from a couple places that use+=
. I've replaced those two lines so that it'd work in Love, and just straight up copied it into playbit, and that seems to work, though I'm not really sure if that's what we'd want/are entitled to do given that the file is (c) Playdate, and there's this particular clause of the SDK License.Though I'm not sure how it could really be reimplemented in any meaningful way that isn't just... rewording the existing CoreLibs implementation.
The text was updated successfully, but these errors were encountered: