搜索结果
查询Tags标签: physics,共有 6条记录-
unity 显示场景所有collider信息
https://ultromanthetacoman.wordpress.com/2018/02/23/draw-unselected-colliders-in-unity/ https://forum.unity.com/threads/show-all-colliders-in-editor-solved.60352/1. 2d在Edit > Project Settings > Physics 2D > Gizmos > Always Show Colliders …
2022/8/8 23:24:21 人评论 次浏览 -
egret p2物理引擎 遇到的坑(1)
直接将pythsic包丢到libs目录下并且修改egretPropertis.json文件TypeError [ERR_INVALID_ARG_TYPE]: The "to" argument must be of type string. Received type objectat validateString (internal/validators.js:125:11)at Object.relative (path.js:493:5)at…
2022/2/7 23:14:35 人评论 次浏览 -
Python 列表(List)
创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。 与字符串的索引一样,列表索引从0开始。列表可以进行截取、组合等。 如下所示:list1 = [physics, chemistry, 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c…
2021/10/13 11:14:29 人评论 次浏览 -
Python 列表(List)
创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。 与字符串的索引一样,列表索引从0开始。列表可以进行截取、组合等。 如下所示:list1 = [physics, chemistry, 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c…
2021/10/13 11:14:29 人评论 次浏览 -
删除列表元素
可以使用 pop语句来删除列表的元素,如下实例: list1 = [physics, chemistry, 1997, 2000]print(list1)list1.pop(2)print("After deleting value at index 2 : " )print(list1) 以上程序运行的结果是: [physics, chemistry, 1997, 2000] After deleting valu…
2021/7/13 23:36:18 人评论 次浏览 -
删除列表元素
可以使用 pop语句来删除列表的元素,如下实例: list1 = [physics, chemistry, 1997, 2000]print(list1)list1.pop(2)print("After deleting value at index 2 : " )print(list1) 以上程序运行的结果是: [physics, chemistry, 1997, 2000] After deleting valu…
2021/7/13 23:36:18 人评论 次浏览