• 21 Posts
  • 6 Comments
Joined 6M ago
cake
Cake day: Jun 12, 2023

help-circle
rss

I got an email about this a week or so ago! I’ve been meaning to reach out to see what the new deal is with licensing. I bought a standalone license a couple of years ago but I haven’t used it in a bit so I don’t know where to even find my key right now. I’m sure it’s all stuff they can get sorted though.

I’m definitely interested to see how they treat it moving forward.


[Complete] Scheduled Maintenance Tonight, 8/7/23
We might briefly go offline tonight around 10pm EST as I perform some routine upgrades. I'll repost here when everything is set! Update: Everything is good to go for now! I attempted to upgrade to the latest version of Lemmy but it appears there are still some hiccups that will require special attention so I reverted us back to v0.17.3 for the time being. I will try again this weekend when I have more time.

WOAH. That’s insanely cool. I’m gonna have to play around with this - have you kicked the tires at all yet?


Get started with ray tracing
I like to dabble in ray tracing from time to time, and there are a couple of resources that I've found invaluable. Check them out! [Ray Tracing in One Weekend Series](https://raytracing.github.io/) [Scratchapixel 3.0](https://www.scratchapixel.com/)



I love to reference this guide every once in a while when I'm doing interior work. It's a great reminder of how to take advantage of a space visually with simple design choices.

I love the look of the retro VW bus. I’ve heard it was an awful vehicle to own, but man it looked good.


fxguide also has a roster of really good podcasts!

https://www.fxguide.com/podcasts/




Yep we should be good to go! If anyone has a problem I’ll look into it right away. I’ll keep an eye on applications to let people through asap - I might open it up and not require an application question if it makes it easier on people.


Blender to UE camera animation screwed up
I'm trying to export a baked camera animation from Blender to Unreal 5. It's just some basic translation/rotation movement, like a camera dolly. I export to FBX, create a Cine Camera in UE, and import the animation, but for some reason my camera turns sideways and the camera scale is animated at some crazy values (like 2500+) while location and rotation stay the same. I've found half a dozen YouTube videos that talk about how to do this and I'm following them exactly but my scene is borked and they're like "LOL it just works check it out". Is there something stupid simple here that I'm missing?


Rigging Peppa Pig in Blender
cross-posted from: https://lemmy.graphics/post/1290 > Again, not mine, but I'm going through old Reddit saves. It's fun to see unique rigs in Blender!

Rigging Peppa Pig in Blender
Again, not mine, but I'm going through old Reddit saves. It's fun to see unique rigs in Blender!

Building a castle generator in Geo Nodes
Not mine, but I stumbled on this today. Pretty sweet!

Guide: How to scale a Rigify rig
*I had this post saved in my Reddit account, and wanted to reshare it here now that I'm moving off the platform. It's helped me get out of a couple of pinches and hopefully it helps you, too.* Originally posted by `u/frizzil` to [r/blender](https://www.reddit.com/r/blender/comments/eu3w6m/guide_how_to_scale_a_rigify_rig/). ## Step 1: Prepare - *Backup your project!* - Figure out what value you're going to scale everything by. Every time you scale, you should hit S then immediately type in your value, for consistency. ## Step 2: Scale linked meshes and curves - Scale the vertices of all meshes and curves linked to the rig (not the objects themselves.) Note: you can scale multiple objects' contents simultaneously by selecting them all in Object mode, then swapping to Edit mode, selecting all vertices with `A`, then scaling with `S`. Be aware that you cannot edit both *curves* and *meshes* simultaneously, however. For clarity, you may optionally disable then re-enable the Armature modifier for all objects, before and after this step. (To do so, select all Armature'd objects, then go `Properties -> Modifiers Properties (Wrench) -> Armature -> Alt-LMB on 'Realtime' (the Monitor)`) ## Step 3: Scale the rig 1. Select the rig. 2. Ensure your rig is in Rest pose, for clarity’s sake. (`Pose mode -> ‘A’ to select all -> Pose -> Clear Transforms -> All`) 3. In the Properties Editor, navigate to `Object Data Properties`, then mark *all* Layers visible by holding Shift then dragging LMB over them. 4. Go into Edit mode, select all bones with `A`, then scale with `S`. 5. Check for any bones that didn’t scale. If you see one and cannot select it directly, find it in the Outliner somewhere under `your_rig -> Pose`, then scale them. (`root -> VIS_thigh_ik_pole.L/R` are likely culprits!) Don’t freak out if things look bad outside of Edit mode! That’s our next step. ## Step 4: Fixing the constraints Any unintended deformation in Pose mode, crazy or slight, shall be your guide. We’re now going to find every single Bone Constraint of type “Stretch to” and hit the “Reset” button on it. **Easy Method** Fortunately, Blender lets us accomplish this programmatically, saving us loads of time. 1. Swap to Object mode and select your rig. 2. Open the Scripting workspace. 3. Paste this *entire* code block into the Python Console, then hit `Enter` twice: ``` bone_count = 0 for b in bpy.context.active_object.pose.bones: for c in b.constraints: if c.type == "STRETCH_TO": c.rest_length = 0 bone_count += 1 ``` Explanation: all Stretch To constraints in Rigify are generated with the “default” rest length of zero... which Blender interprets as needing to be immediately recalculated based on current distance. We effectively changed that distance earlier by scaling the bones, so now we reset to zero to have Blender calculate it once again. Now, verify that the script worked by typing in `bone_count` then hitting `Enter` again, which will spit out the number of constraints we just changed. It should NOT be zero - if it is, then double check that your rig is selected and your 3D View is in Object mode, then try again. Your rig should look much better, though it may not be perfect yet. If you can't get this to change *any* bones, consider starting at step 1 of Manual Method; otherwise, skip to step 6 (*sic*, no step 6, move to step 5 instead). **Manual Method** 1. Go into Pose mode. 2. Back in `Object Data Properties`, select only the last Layer (i.e. the ‘ORG’ bone layer.) 3. Select a bone (preferably ‘ORG-spine’, somewhere in the waist), then go 1Properties -> Bone Constraints1, look for a “Stretch To” modifier, then if present, “Reset” it. Repeat for *all* bones on the layer, working your way out from the spine. 4. Now select only the third-to-last layer (i.e. the ‘DEF’ bone layer), and repeat the last step for all bones in it. 5. Check the second-to-last layer (i.e. ‘MCH’) for several bones that may also need to be “Reset”, particularly the huge bones marked ‘ik_stretch’. !< 6. *Advanced:* If you have anything custom and hook-based (like Spline IKs), now is the time to find those hook modifiers and hit their ‘Reset’ buttons while in Edit mode with those objects. 7. Verify that nothing looks off by toggling between Edit and Pose mode on your rig, and checking any bones near where deformation is present. (It’s not likely, but you may need to check the other layers.) If you have animations, double check that nothing is currently keyframed. When you’ve finished, the model should look identical in both modes. ## Step 5: Animations (if present) The location channels for many of the bones in each animation will also need to be scaled by your value, lest your animations swing too short or too wide. **Easy Method** 1. In the Python console, type in `rescale = YOUR_SCALE_VALUE` except with your scale value, and hit Enter. 2. Again in the Python console, type in `rescale_actions = ['my_action1', 'my_action2']` except with the *exact* names of all your desired actions, each inside two single-quotes, and separated by commas, between the two brackets. Then hit `Enter`. 3. Now paste in the *entire* following script, then hit `Enter` twice: ``` for action_id in rescale_actions: for fcurve in bpy.data.actions[action_id].fcurves: data_path = fcurve.data_path if data_path.startswith('pose.bones[') and data_path.endswith('].location'): for p in fcurve.keyframe_points: p.co[1] *= rescale ``` If you get an error, (e.g. you typed in an action's name incorrectly), then Undo with `Ctrl+Z` then repeat from step 2, until you get no errors and all your actions are scaled! If you just can't get this to work, or need to troubleshoot something, then you might consider the *Manual Method*... but it will be extremely tedious. **Manual Method** 1. Configure a workspace with a 3D View of your model, the Graph Editor, and the Dope Sheet. 2. In the Graph Editor, enable `View -> Only Selected Keyframes Handles`. (This will save you clicks.) 3. Select your rig and swap to Pose mode. 4. For each misplaced bone under each Action in the Dope Sheet, select the bone, shift-select all its “location” channels in the Graph Editor, then while mousing over the graph side of the editor, hit `A -> S -> Y` and immediately type in your scale value. Verify the Action is correct before moving onto the next, and you should be good to go. ## Conclusion Whew! If anyone has corrections or suggestions, please leave them! It took a lot to figure all this out, and I couldn’t find many resources myself, so hopefully this helps someone out there. Good luck, you crazy rig scalers, you.

MetaHuman Animator released!
MetaHuman animator is one of the reasons I started looking at UE again and I'm so excited to finally get to try it. I got the notification when I opened the UE launcher but [here's an article](https://www.cgchannel.com/2023/06/epic-games-releases-metahuman-animator/) that talks a bit about it. I'll link to more if I come across it.

[Resolved] New user signups broken
EDIT: This has been resolved! I discovered earlier today that our SMTP server is not working as expected, so new signups will not work properly at the moment. Please be patient and I will update here when it's fixed!

Screen Space Global Illumination in ThreeJS
GitHub user 0beqz has done a lot of work on a ThreeJS extension called "Realism Effects" that adds SSGI, motion blur, and TRAA to ThreeJS scenes. I'm definitely going to check this out more for my own scenes but I wanted to share for others to enjoy too! [https://github.com/0beqz/realism-effects](https://github.com/0beqz/realism-effects)

Just search for a community you’re interested in from your home instance - for example, search for !3dmodeling@lemmy.graphics and it will show up. If it doesn’t, wait for the “No Results” text to disappear and check for it in the communities list and click the subscribe button.


A couple great YT channels for modeling
[JL Mussi](https://www.youtube.com/@jlmussi) - A super talented Maya artist with a lot of great tips and tricks videos. Definitely helpful, even if you don't use Maya. [OnMars3D](https://www.youtube.com/@OnMars3D) - Has a great collection of modeling videos. What other YouTubers should I follow?

Topology Guides Website
This site is a treasure trove of info for 3D artists. If you ever need help with topology it's a great place to start - it even has an encyclopedia of terms for beginners!

Communities for computer graphics
A collection of communities around computer graphics topics - if you liked subreddits like, r/animation, r/3dmodeling, r/vfx, etc, then check these out! [/c/nukevfx](https://lemmy.graphics/c/nukevfx) - For Nuke compositors specifically !nukevfx@lemmy.graphics [/c/compositing](https://lemmy.graphics/c/compositing) - For compositors of all kinds (After Effects, Nuke, Fusion, Photoshop and more) !compositing@lemmy.graphics [/c/animation](https://lemmy.graphics/c/animation) - For animators and animation enthusiasts !animation@lemmy.graphics [/c/3dmodeling](https://lemmy.graphics/c/3dmodeling) - For software-agnostic 3D modeling tips and tricks. All programs welcome! !3dmodeling@lemmy.graphics [/c/webgl](https://lemmy.graphics/c/webgl) - For the many ways you can create 3D graphics on the web, including WebGL, ThreeJS, PolygonJS, and more. !webgl@lemmy.graphics

Welcome to Lemmy.graphics!
pin
pin
Hi, everyone! I'm Aaron, and I'm a 3D designer that joined Lemmy during the Great Reddit Migration. I consider myself a generalist but I thrive in the world of lighting, rendering, and compositing. I run a small animation studio where I do a lot of work in advertising and indie feature VFX, and in what little spare time I have, I develop the unofficial [Arnold for Blender](https://github.com/lunadigital/btoa) add-on! I noticed there didn't seem to be many communities around computer graphics, so here we are! I'm hoping that if you love to browse subreddits like r/3dmodeling, r/vfx, r/animation, and others, you'll find yourself right at home here. Welcome! If you're interested in more general film conversations, check out the communities over at [Lemmy.film](https://lemmy.film/)! # What the heck is this place? Lemmy.graphics runs on [Lemmy](https://join-lemmy.org/), a self-hosted social link aggregation and discussion platform. Think of it like Reddit, but instead of everything under one site it's split between thousands of interconnected ones. That might sound confusing, but it's actually really easy to engage with communities all over the Lemmyverse. Check out this [Getting Started Guide](https://lemmy.world/post/37906) for more info! Lemmy is completely free and open, and not controlled by any one company. This means that there is no advertising, tracking, or secret algorithms. # Can I create a community for *X* topic? Because we're so small right now I'm limiting new community creation to admins only, but chances are pretty darn good I'll greenlight whatever you want as long as it's tangentially related to computer graphics. Just open a new conversation here with the topic idea, community name, and whether or not you want to be a mod and I'll set it up.
5

Kicking off the community with one of my favorite YT channels
I'd love to see this become a hub for us to share some of our favorite Nuke tutorials, resources, gizmos and more. So, to kick us off, I thought I'd link to one of my favorite YouTube channels for Nuke content: Hugo's Desk. If you *haven't* heard of him, Hugo Guerra is a seasoned Nuke compositor with a ton of industry experience, and he spends most of his time now creating educational content, both paid and free. He's especially good for beginners looking to break into the program, as long as you can deal with long Twitch stream replays and sitting through rabbit hole conversations with chat. ;)