コード例 #1
0
ファイル: CollisionMask.cs プロジェクト: 207h2Flogintvg/LGame
		public static Polygon MakePolygon(LImage image) {
			if (image == null) {
                throw new RuntimeException("Image is null !");
			}
			return MakePolygon(image.GetIntPixels(), image.GetWidth(),
					image.GetHeight());
		}
コード例 #2
0
ファイル: CollisionMask.cs プロジェクト: 207h2Flogintvg/LGame
        public static LTexture.Mask CreateMask(LImage image)
        {
			if (image == null) {
				throw new RuntimeException("Image is null !");
			}
			return CreateMask(image.GetIntPixels(), image.GetWidth(),
					image.GetHeight());
		}