猫史档案馆


丨鲸落whale丨

丨鲸落whale丨

Lv.1

至此,已成艺术

获赞:2863收藏:2130浏览:85624作品收藏:1680

签名:

回复帖子评论
上一页5 页 / 共 6下一页

考完期中了....(炸)话说你们都考多少分呢) 中回复

评论到二十直接公布自己分数好吧

2023-11-17T20:09:20 点赞:0

考完期中了....(炸)话说你们都考多少分呢) 中回复

完了,得公布分数了

2023-11-18T19:23:52 点赞:0

考完期中了....(炸)话说你们都考多少分呢) 中回复

满分四百

语文:91

数学:100

英语:100

科学:98

总分:389

2023-11-18T19:25:59 点赞:0

四首页!!! 中回复

恭喜

(差不多还需4~5个月)

2023-11-30T22:17:20 点赞:0

假如你最近存的一张图片复活并攻击你,你的下场会怎样 中回复

center_image

EMM...

2023-12-09T22:17:46 点赞:2

明天比赛了,大家能祝我一等进市赛吗 中回复

加油💪)啥比赛)))

2023-12-09T22:18:29 点赞:1

[电⚡]哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈山东终于下雪了 中回复

精神状态凉好

2023-12-15T18:58:21 点赞:0

2303届风纪委员会阶段总结 中回复

捧场!

2023-12-17T11:22:00 点赞:1

把26个英文字母用中文输入法打一遍是什么 中回复

ABC的风格hi加快了膜片钳如上图v五项原则

2023-12-17T18:34:51 点赞:0

【虫巢杯】限定素材的创作活动~ 中回复

浅浅问一句,我能参加吗)

2023-12-17T18:49:28 点赞:0

【虫巢杯】限定素材的创作活动~ 中回复

报名)

2023-12-17T21:14:48 点赞:1

找两人协作 中回复

我?

2023-12-23T17:18:51 点赞:0

小游戏:你是哪个省的+当地的特色 中回复

厦门 @作者 我是广东的,我们这里的特色就是双皮奶、凉茶、白话和饭桌上的福建人吧?(无意冒犯) 你干嘛

2023-12-25T19:53:31 点赞:0

MC喵战(FPS)ursina引擎 中回复

from ursina import * from ursina.prefabs.first_person_controller import FirstPersonController
app = Ursina()
ground = Entity(model='plane', collider='box', scale=喵, texture='grass')
for i in range(16):     Entity(model='cube', scale=2, texture='brick',            texture_scale=(1, 2),            x=random.uniform(-8, 8),            z=random.uniform(-8, 8) + 8,            collider='box',            scale_y=random.uniform(2, 3),            origin_y=-0.5)
editor_camera = EditorCamera(enabled=False)

def input_pause(key):     if key == 'tab':         editor_camera.enabled = not editor_camera.enabled         mouse.locked = not editor_camera.enabled         player.cursor.enabled = not editor_camera.enabled         player.visible_self = editor_camera.enabled         editor_camera.position = player.position

pause_handler = Entity(input=input_pause)
player = FirstPersonController(model='cube', color=color.orange, z=-10, origin_y=-0.5, speed=8)
喵 = Entity(     model='cube',     parent=camera,     scale=(0.3, 0.2, 0.5),     position=(0.5, -0.25, 0.5),     color=color.red,     on_cooldown=False )

def shoot():     if not 喵.on_cooldown:         喵.on_cooldown = True         # from ursina.prefabs.ursfx import ursfx
        # ursfx(         #     [         #         (0.0, 0.0),         #         (0.1, 0.9),         #         (0.15, 0.75),         #         (0.3, 0.14),         #         (0.6, 0.0)         #     ],         #     volume=0.5,         #     wave='noise',         #     pitch=random.uniform(-13, -12),         #     pitch_change=-12,         #     speed=3.0         # )
        invoke(setattr, 喵, "on_cooldown", False, delay=0.1)
        if mouse.hovered_entity and hasattr(mouse.hovered_entity, 'hp'):             mouse.hovered_entity.blink(color.red)             mouse.hovered_entity.hp -= 10
            if mouse.hovered_entity.hp <= 0:                 destroy(mouse.hovered_entity)
            mouse.hovered_entity.health_bar.scale_x = mouse.hovered_entity.hp / mouse.hovered_entity.max_hp * 1.5

def update():     if held_keys['left mouse']:         shoot()

class Enemy(Entity):     def __init__(self, add_to_scene_entities=True, **kwargs):         super().__init__(             add_to_scene_entities=add_to_scene_entities,             model='cube',             collider='box',             scale_y=2,             origin_y=-0.5,             color=color.light_gray,             **kwargs         )         self.health_bar = Entity(             parent=self,             model='cube',             color=color.red,             y=1.2,             scale=(1.5, 0.1, 0.1)         )         self.max_hp = 100         self.hp = self.max_hp
    def update(self):         self.look_at_2d(player.position, 'y')
        if distance_xz(self.position, player.position) > 2:             self.position = self.position + self.forward * time.dt * 0.5

Enemy()
app.run()

2023-12-26T19:16:41 点赞:0

【自制Python问卷】 中回复

DD√√√

2023-12-26T19:17:18 点赞:0

emm.做了一个3v3联机游戏)咱就说完成度80%,但有个问题 中回复

关键是我的ui和技术都好像不太行)

2023-12-29T19:19:07 点赞:0

有人帮我测试联喵战吗? 中回复

进来了但没人

2023-12-29T20:08:21 点赞:0

在线拜师,不论段位! 中回复

萌新路过)

2023-12-30T14:10:56 点赞:1

:-)))))))))) 中回复

GOOD!

2023-12-30T14:18:36 点赞:0

关于 BKStudio 夜雨工作室二周年庆祝活动的大众兴趣度调查 中回复

但会耗费我们的经历

(经历好像应该是精力吧)

2024-01-01T11:11:33 点赞:1

各位说说能体现自己最高水平的作品是哪一个 中回复

一个都没有......

2024-01-15T22:09:23 点赞:0

切换屏幕的方法是什吗? 中回复

ctrl +  win + ←/→

2024-01-15T22:10:00 点赞:1

求助~()() 中回复

center_image

2024-01-24T16:50:15 点赞:0

【紧急通知】 中回复

顶)

2024-01-24T16:55:33 点赞:0

你们什么时候放寒假 中回复

已经放了)

2024-01-24T17:33:18 点赞:0

66好好好 中回复

https://kitten4.cod喵/?invite_code=IM4VJI喵:IM4VJI我在编程猫发起了一个协作项目,点击链接即可加入一起创作!

2024-01-24T20:19:05 点赞:0

有没有大佬有狗头素材? 中回复

emotion_doge

2024-01-24T20:20:25 点赞:1

66好好好 中回复

center_image

啊哈哈哈(剩200分(还要肝一世纪))(阴暗))(扭曲)(爬行)

2024-01-24T20:30:31 点赞:1

嗨害嗨,屑酷桃来测知名度辣~ 中回复

346789

2024-01-29T12:04:31 点赞:0

【猫猫杯】来自kawai风格的多时间创作活动~ 中回复

kawai是什么

2024-01-29T12:07:45 点赞:0