
シネマティックなグルメバーガーの爆発 プロンプト(コードスタイル)
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 = "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)
機械翻訳 — この作品を生成したのは元のプロンプトです。











