How can I modify the intensity of a normal map when using a texture object?

For normal normal map texture, I just multiply it with a vector.
But in TextureObject, It won’t let me use the multiply node on it. It says “Texture is not compatible with float”.

You need to pass the texture object to a texture sample node if you want to sample it at a particular point so that you can multiply it.

Thanks, works great!