
电影级美食汉堡爆浆
A highly structured, code-like prompt using Python syntax (importing physics and lighting modules) to generate a cinematic advertising image of a gourmet burger exploding in slow motion, detailing ingredients, textures, and studio lighting setup.
观看2,300
点赞100
评论26
分享8
收藏50
引用0
翻译
import physics_engine as cinematic
from studio_lighting import RimLight, SpotLight
class GourmetBurger:
def __init__(self):
self.state = "组装完成"
self.ingredients = [
"烤布里欧面包",
"和牛肉饼",
"融化切达起司",
"酥脆生菜",
"传家番茄",
"秘密酱汁滴"
]
def trigger_explosion(self):
"""
运行慢动作解构效果。
"""
self.state = "空中爆发"
for item in self.ingredients:
# 应用物理学以实现「飞行」效果
item.apply_force(direction="向外", velocity="慢动作")
item.render_texture(quality="超详细")
# 在3D空间中悬浮液体粒子
cinematic.suspend_fluids(type="酱汁", density="高黏度")
# 环境配置
scene = cinematic.Scene(background="深色工作室炭灰")
scene.add_lighting([
RimLight(intensity=0.8, color="温暖金色"),
SpotLight(target="肉饼质地", focus="超锐利")
])
# 运行渲染
burger = GourmetBurger()
burger.trigger_explosion()
render_output = scene.capture(style="电影广告", realistic=True)
机器翻译 — 实际生成作品的是原文提示词。











