Some Problems About Frame Synchronization Framework

来源:互联网 发布:涉密网络三员考试 编辑:程序博客网 时间:2024/06/06 02:17

1、The function of sin and cos are are inside out.

2、The LBoxCollider’s size is strange.

public void GetUniFormCell(FVector2 Tmin, FVector2 Tmax, LList<Cell> TArray ){        {            TArray.Clear();            int nMinx = LPhysicsUtil.IFloor(Tmin.x / m_cellSize) - 1;            int nMiny = LPhysicsUtil.IFloor(Tmin.y / m_cellSize) - 1;            int nMaxx = LPhysicsUtil.ICeil(Tmax.x / m_cellSize) + 1;            int nMaxy = LPhysicsUtil.ICeil(Tmax.y / m_cellSize) + 1;        }        ...}
原创粉丝点击