#Find every script that extends another one.

2 messages · Page 1 of 1 (latest)

whole ocean
#

Is it possible to find every script that extends another one, then list them?

I can list every file in the project, instantiate all gdscript files then check if they are the right type, but I'd like to know if there is something more precise than that, so I don't need to rescan. Can I do things like get any script that was just saved?

I want to try to get a behavior similar to the one we saw with visual scripting/visual shaders where a new script can show up in a list.

whole ocean
#

I saw a response, and no unless that somehow tells me info about a script that was just created/saved then it can't help me.

Switched over to scanning every script to see if they are the correct type, then using that to collect them.