コード例 #1
0
ファイル: CCPhysicsJoint.cs プロジェクト: kkarol93/CocosSharp
        public static CCPhysicsJointGroove Construct(CCPhysicsBody a, CCPhysicsBody b, CCPoint grooveA, CCPoint grooveB, CCPoint anchr2)
        {
            CCPhysicsJointGroove joint = new CCPhysicsJointGroove();

            if (joint != null && joint.Init(a, b, grooveA, grooveB, anchr2))
            {
                return(joint);
            }

            return(null);
        }
コード例 #2
0
ファイル: CCPhysicsJoint.cs プロジェクト: kkarol93/CocosSharp
		public static CCPhysicsJointGroove Construct(CCPhysicsBody a, CCPhysicsBody b, CCPoint grooveA, CCPoint grooveB, CCPoint anchr2)
		{
			CCPhysicsJointGroove joint = new CCPhysicsJointGroove();

			if (joint != null && joint.Init(a, b, grooveA, grooveB, anchr2))
			{
				return joint;
			}

			return null;
		}