Thread: XNa C# visibility priority

  1. #1
    Registered User
    Join Date
    Jul 2011
    Posts
    62

    XNa C# visibility priority

    Hello again all!
    Right now I'm making a library for XNA on C#.NET (if I ever finish it it will be made accessible, I got boss camera class which is worth it alone ). And I ran into this problem... I was capable of rendering a cube well enough, all sides correct etc... But when I tried to render multiple, some were cubes were visible through others!

    I'm using a lighting effect with color, so VertexColorPositionNormal.

    Color is determined in this way:
    Code:
    for(int i=0; i<VertexColl.Count; i++)
    {
    VertexColl[i] = Color.FromNonPremultiplied(new Vector4(VertexColl[i].Position, 1));
    }
    I tried giving the alpha component a 255 byte valye, but as I thought it didn't change much. It's 11:40 pm and I'll probably post the example tomorrow.

  2. #2
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    This forum is primarily for game programming in C++. Perhaps that is b/c this is a C/C++ programming forum. Just a thought.

  3. #3
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    It looks like you are both blissfully unaware of the C# Programming forum here.


    Quzah.
    Hope is the first step on the road to disappointment.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. #define visibility
    By mynickmynick in forum C Programming
    Replies: 3
    Last Post: 04-19-2011, 03:12 AM
  2. Ensuring Toolbar Visibility
    By SMurf in forum Windows Programming
    Replies: 1
    Last Post: 03-17-2006, 01:08 AM
  3. Check application visibility
    By 3saul in forum Linux Programming
    Replies: 2
    Last Post: 02-13-2006, 05:13 PM
  4. Process visibility
    By SMurf in forum Windows Programming
    Replies: 5
    Last Post: 11-17-2003, 09:00 PM
  5. scoping visibility
    By dirgni in forum C++ Programming
    Replies: 2
    Last Post: 12-02-2002, 04:16 PM

Tags for this Thread