Darkenor
Darkenor

Reputation: 4449

How can you view Obj files in Visual Studio as text instead of the 3D Renderer?

In Visual Studio, obj files display in a nifty 3D renderer, as seen below.

enter image description here

The problem is, I can't figure out how to view the text of the obj file without opening it up in an external editor. Is there a way to switch between the rendered mode and text mode for graphic programmers?

Upvotes: 2

Views: 7104

Answers (1)

Erwin Coumans
Erwin Coumans

Reputation: 1806

You can use Visual Studio 'Tools / Options / Text Editor / Extensions / Add Extension: (OBJ, Visual Studio C++) Then every .obj will open as a text file.

Upvotes: 3

Related Questions