浏览代码

CharacterID: Fixed copy paste error in comment

Jorrit Rouwe 6 月之前
父节点
当前提交
0609b5573f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      Jolt/Physics/Character/CharacterID.h

+ 2 - 1
Jolt/Physics/Character/CharacterID.h

@@ -22,12 +22,13 @@ public:
 	{
 	}
 
-	/// Construct from index and sequence number combined in a single uint32 (use with care!)
+	/// Construct with specific value, make sure you don't use the same value twice!
 	explicit				CharacterID(uint32 inID) :
 		mID(inID)
 	{
 	}
 
+	/// Get the numeric value of the ID
 	inline uint32			GetValue() const
 	{
 		return mID;