Skip to content
View AlexiyOrlov's full-sized avatar
Block or Report

Block or report AlexiyOrlov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. k-turrets k-turrets Public

    Java 3

  2. satako satako Public

    Java

  3. trajectory-preview trajectory-preview Public

    Java

  4. Noise generation at an arbitrary pos... Noise generation at an arbitrary position for terrain
    1
    void GenerateNoise(int width, int height, float scale, int octaves, int positionX, int positionY)
    2
    {
    3
        for (int y = positionY; y < positionY + height; y++)
    4
        {
    5
            for (int x = positionX; x < positionX + width; x++)
  5. A* pathfinding A* pathfinding
    1
    public class NavigationGrid
    2
        {
    3
            public int width, height;
    4
            public Cell[,] cells;
    5
    
                  
  6. A* pathfinding for floating point co... A* pathfinding for floating point coordinates
    1
    public class FloatCell
    2
        {
    3
            public bool walkable = true;
    4
            public float x, y;
    5
            public int hCost, gCost, fCost;