电影感美食汉堡爆裂提示词(代码风格)
一张电影感的产品摄影作品,展示一个美食汉堡在慢动作中爆裂开来,配料悬浮在空中,背景为深色摄影棚。画面强调光泽质感、戏剧性的轮廓光以及高端食品广告美学。
模型: Nano Banana Pro分类: Product Marketing风格: Cinematic语言: en
提示词
import physics_engine as cinematic from studio_lighting import RimLight, SpotLight class GourmetBurger: def __init__(self): self.state = "assembled" self.ingredients = [ "toasted_brioche_bun", "wagyu_patty", "molten_cheddar", "crispy_lettuce", "heirloom_tomato", "secret_sauce_droplets" ] def trigger_explosion(self): """ 执行慢动作解构效果。 """ self.state = "mid-air_burst" for item in self.ingredients: # 为“飞散”效果应用物理 item.apply_force(direction="outward", velocity="slow_motion") item.render_texture(quality="hyper_detailed") # 将液体粒子悬浮在 3D 空间中 cinematic.suspend_fluids(type="sauce", density="high_viscosity") # 环境配置 scene = cinematic.Scene(background="dark_studio_charcoal") scene.add_lighting([ RimLight(intensity=0.8, color="warm_gold"), SpotLight(target="patty_texture", focus="ultra_sharp") ]) # 执行渲染 burger = GourmetBurger() burger.trigger_explosion() render_output = scene.capture(style="cinematic_advertising", realistic=True)