Another old fashioned “outline” trick is to draw the mesh inside out using a solid color and with each vertex slightly pushed out along its normal. Sort of an inside out shell slightly bigger than the object.
Nice bow you have already done the hard part for stencil too. All left is setting the values for stencil testing/writing in the additional renderstate of the material.
And make sure you have enabled a depth texture with stencil component.
At least the pumpkin would not have the internal line. Not sure about the trunk since itt seems to be a normal issue.
Did you do it by scaling or by having a vert shader that pushes the vertex out a little by their normals?
The first only works for simple objects. The second will work for a lot more types of objects (like donuts, animals, characters, etc.)… most complex shapes will look ok with the second method.
Yeah, these are all just based on the first method.
I did go the other route with a CartoonFilter where each object can have its own outline width and color, however, for some reason, some of the models I tried does not work that good.