Class ObstacleVertex
    Public
    
    One vertex in an obstacle.
This is a linked list and one vertex can therefore be used to reference the whole obstacle
A* Pro Feature:
This is an A* Pathfinding Project Pro feature only. This function/class/variable might not exist in the Free version of the A* Pathfinding Project or the functionality might be limited.
The Pro version can be bought here
Public Variables
        
                dir
        
    
                    
                    
                        Public
                    
                
        
                height
        
    
                    
                    Height of the obstacle in this vertex.
                        Public
                    
                
        
                ignore
        
    
                    
                    
                        Public
                    
                
        
                layer
        
    
                    
                    Collision layer for this obstacle.
                        Public
                    
                
        
                next
        
    
                    
                    Next vertex in the obstacle.
                        Public
                    
                
        
                position
        
    
                    
                    Position of the vertex.
                        Public
                    
                
        
                prev
        
    
                    
                    Previous vertex in the obstacle.
                        Public