What Should I learn If I Wanted To Modify The Source Code Of Blender

I Wanted to Know Any Good Resources For An Intermediate Coder enough to understand and edit the blender Code, i’m not talking about the scripting Workspace In blender But rather Editing Blender(the source Code)

Maybe Something You Have Refereed to while developing Blender @blender_devs

Hi. Dunno if this is what you are looking for but the wiki documentation might interest you:

1 Like

Never used the word count thing, but other points seem useful.

3 Likes

I’ve been asking similar questions recently, and I’ve had some good advice. The absolute first thing you need to do is get comfortable building Blender. Instructions are here, and you can get help on this forum with problems. I’m happy to help where I can, but it looks like you’re on Windows, which I don’t have any experience with.

After that, here are some things I’ve found while trying to get my head around Blender from a dev point of view, in no particular order:

  1. There’s some good documentation here - https://wiki.blender.org/wiki/Source - although it seems to be split between that page and the old wiki archive, and I’m not sure if the old wiki stuff is out of date now.
  2. There’s some documentation in the doc folder in the Blender source tree - again, not sure how up to date that is.
  3. I’ve found it useful to use an IDE, I find it helps me browse the source more easily, and being able to set break points and use the debugger helps a lot. I say this as someone who normally loves to use a good old fashioned text editor ;-).
  4. Blender’s codebase is BIG, so pick an area of Blender you know well to start with, and focus on that.
  5. I’ve found it quite helpful to read diffs from other developers; knowing what code in what files they changed to fix a bug/add a feature is really useful. You can search patches here - https://developer.blender.org/differential/ - or browse the repository history directly for commits.

I hope some of that’s helpful - this is the first large codebase I’ve tried to get to grips with, and it can be intimidating!

5 Likes