linchen

Results 15 comments of linchen

Hey @jstuckey thank you for your reply, the gameFiles.concat(commonFiles) result is file path, not the file contents. I am gulp beginners, I think this is the relative lack of learning...

got it, but I still do not understand why can not generate gzip.

>创建url后这个assert(result.code == 0, result.message)的作用是用来验证url是否存在吗 在这个上下文里面 `code` 等于 `0` 就表示 `创建pc端订单` 这次调用是 `ok` 的。 >在回调成功后的地址里面有 version=1.0 app_id sign_type=RSA2 等信息 如何关闭这个 这个是阿里 [异步通知](https://opendocs.alipay.com/open/204/105301/#%E5%BC%82%E6%AD%A5%E9%80%9A%E7%9F%A5%E5%8F%82%E6%95%B0) 携带过来的参数,目前看下来是不能屏蔽的。理论上商户应该不需要特别关心 `version`、`appid_id` 等信息才对,如果缺失了部分字段那么该通知信息的合法性可能无法保证了。

我需要确认一下官方的标准的怎么规定的,如果着急使用,建议你写成:`20.00`

小程序里面的支付宝支付我还没研究过文档,周末有空我会去看一下。欢迎提pr呀 👏

我的微信号:`LuncherNo1`, 欢迎交流:)

I also encountered the same problem. How did you solve it later? @evanc @Mathster0598 @nickdekesel

> 更新API 地址 我以为这个项目没人用了 🤙

``` javascript case 'region': var bone = spine_pose.bones[slot.bone_key]; ctxApplySpace(ctx, bone.world_space); ctxApplySpace(ctx, attachment.local_space); ctxApplyAtlasSitePosition(ctx, site); ctx.scale(attachment.width/2, attachment.height/2); ctxDrawImageMesh(ctx, render.region_vertex_triangle, render.region_vertex_position, render.region_vertex_texcoord, image, site, page); break; ``` When I did not use...

I directly replace ctxDrawImageMesh into drawImage can it? Thank you, I went to try.