#render

4 posts · Last used Apr 15

Back to Timeline
aral
@aral@mastodon.ar.al · Feb 27, 2026
🥳 New Kitten Release This one fixes a bug that you would have encountered had you had an asynchronous component (component with asynchronous render method) nested more than one-level deep within synchronous components. (Kitten’s html renderer transparently supports both synchronous and asynchronous render methods.) So, this (taken from my unit test), for example, works correctly now: ```js class AsynchronousOtherName extends KittenComponent { async html () { await new Promise(resolve => setTimeout(resolve, 10)) return kitten.html`Balkan` } } class SynchronousName extends KittenComponent { /* NOT async */ html () { return kitten.html`Aral <${AsynchronousOtherName.connectedTo(this)} />` } } class SynchronousTemplate extends KittenComponent { html ({ SLOT }) { return kitten.html`[Before slot]${SLOT}[After slot]` } } class MyPage extends KittenPage { html () { return kitten.html` <${SynchronousTemplate.connectedTo(this)}> This should render all at once after a short delay.

Hello, <${SynchronousName.connectedTo(this)} />

3
1
3
Boosted by Ged Maheux @gedeonm@mastodon.social
martincrownover
@martincrownover@mastodon.gamedev.place · Feb 27, 2026
So, I finally added audio to this animation from 2024 - and re-mastered and re-rendered it in Blender too. 😅 Based on an illustration by @stublag@xoxo.zone! Happy Friday, fediverse! #blender #blender3d #b3d #render #animation #loop #cycles #procedural
168
10
75
Boosted by Ged Maheux @gedeonm@mastodon.social
martincrownover
@martincrownover@mastodon.gamedev.place · Jan 15, 2026
Here's an animated version of the Trapper Keeper art! Could do more with it, but this is not a bad start. 😎 #blender #blender3d #b3d #compositing #retro #render #cycles #art #digitalart #animation #loop
10
0
4

You've seen all posts