Is there a basic effect intended for use outside of spritebatch

Like one to be used with custom vertex data when not using spritebatch.
like alphatest effect or something.

The reason i ask is basic effect when i try do this seems to just ignore most of my graphicsdevice state commands. Such as cullmode none or ccw plus a few more ect… I sort of don’t want to use my own shader for a proof of concept example.

BasicEffect does not ignore/override render state. You can directly use the SpriteEffect that SpriteBatch uses internally. The other stock effects are all for more specialized stuff.