本文整理汇总了C#中WCell.RealmServer.Entities.WorldObject.GetAngleTowards方法的典型用法代码示例。如果您正苦于以下问题:C# WorldObject.GetAngleTowards方法的具体用法?C# WorldObject.GetAngleTowards怎么用?C# WorldObject.GetAngleTowards使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WCell.RealmServer.Entities.WorldObject
的用法示例。
在下文中一共展示了WorldObject.GetAngleTowards方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IsBehind
/// <summary>
/// Returns whether this Object is behind the given obj
/// </summary>
public bool IsBehind(WorldObject obj)
{
if (obj == this)
{
return false;
}
var angle = Math.Abs(obj.m_orientation - obj.GetAngleTowards(m_position));
return angle >= BehindAngleMin &&
angle <= BehindAngleMax;
}
示例2: IsInFrontOf
/// <summary>
/// Returns whether this Object is in front of the given obj
/// </summary>
public bool IsInFrontOf(WorldObject obj)
{
if (obj == this)
{
return false;
}
var angle = Math.Abs(obj.m_orientation - obj.GetAngleTowards(m_position));
return angle <= InFrontAngleMax ||
angle >= InFrontAngleMin; // difference is close to 0 (or 2 pi) if obj is in view field of the other
}
示例3: PlaceInFront
public void PlaceInFront(WorldObject obj)
{
var pos = m_position;
pos.Z += 1;
//m_position.GetPointYX(m_orientation, 5, out pos);
m_Map.TransferObjectLater(obj, pos);
obj.Orientation = obj.GetAngleTowards(this);
}