this post was submitted on 09 Jul 2025
53 points (96.5% liked)

Ask Lemmy

33231 readers
1111 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 1 day ago (4 children)

I love SVGs. Vector images are interesting and seeing an image stored in readable text and still being so small is really cool to me. It’s also fun to play around with since you can plug html into it and vice versa.

[–] [email protected] 2 points 19 hours ago (3 children)

I miss Flash for vector reasons, both for animations and games. My internet is still slow enough to matter, especially with streaming speed/stability issues.

WebGL is a thing but a bit of a mess, especially downloading. Ruffle or using Wick editor are options... but even Newgrounds doesn't highlight this (unless you find it first and go to info page from there). I assume most animators just render their animations now.

Have tinkered with vertex color (untextured) models in Godot, I see workflow possibilities there (also for 2D to a lesser extent) but good luck if it's gotta be me. Some chunk of development is also different from the content it allows.

[–] [email protected] 1 points 8 hours ago (2 children)

I was only a kid in Flash’s heyday, so I’ve never dealt with it creatively. I didn’t even know it supported vector graphics. You can animate SVGs though, but I don’t know if there’s a good tool for it though. I’ve only ever made SVG animations by hand with SMIL.

Also wouldn’t blender be better suited for vertex colored animations? I feel like in either case the point is lost though since it’ll have to be rasterized eventually.

[–] [email protected] 1 points 7 hours ago* (last edited 5 hours ago) (1 children)

Also wouldn’t blender be better suited for vertex colored animations?

I make the models in Blender. Animation itself could be done in either, but a mix of the two probably makes more sense (Blender for character animations, in-engine for more dynamic/combined stuff or scenes etc.).

Blender-only would probably be fine if you can export to Blender Game Engine but I'm not sure it's really a thing anymore. Godot has exports for multiple platforms (also obviously, interactivity). Though anything that could render a scene could work, Raylib or other frameworks/engines.

I feel like in either case the point is lost though since it’ll have to be rasterized eventually.

Not quite. The major point is that it's being rendered on the user's computer as-needed rather than the rasterized result being loaded for every pixel on the screen for every frame. The data difference can be huge, particularly as the frames/animations add up.

The most "real" implementation also allows zooming and transformations whereas something like a runtime-rasterized SVG might have ugly pixellation if you do that (haven't tested Godot's new SVG oversampling) or even just from bezier conversion with too few points. So I prefer real minimal polygons over rasterized-solution SVGs.

The 3D version of this isn't even anything exotic. It's just a 3D game without textures, using old techniques that actually still have some support thanks to being in the 3D formats. It's an aesthetic choice that is also an optimization.

[–] [email protected] 1 points 4 hours ago

Oh I didn’t even realize you were talking about games lmao even though you mentioned newgrounds. I was thinking strictly for animation. That makes perfect sense for games.