PROMPT RECORD图像记录
这些成品其实挺可爱的。这个 GPT Image 2 提示词能把哲学家等人变成玩具。 2x2 网格,为 4 位著名哲学家分别生成:void main() { string subject = "...
中文说明
这些成品其实挺可爱的。这个 GPT Image 2 提示词能把哲学家等人变成玩具。 2x2 网格,为 4 位著名哲学家分别生成:void main() { string subject = "[$SUBJECT]"; // 材质着色器 vec3 toy_skin = subsurface_plastic(roughness: 0.6, specular: 0.1); vec3 toy_eyes = glossy_acrylic(reflectivity: 0.9); vec3 packaging = matte_cardboard(print_quality: high) + clear_plastic_window; vec3 base_mat = infer_pedestal_material(subjec...
原始 Prompt
These actually turned out pretty cute. This GPT Image 2 prompt turns philosophers and others into toys.
2x2 grid, do this for 4 famous philosophers: void main() { string subject = "[$SUBJECT]"; // Material Shaders vec3 toy_skin = subsurface_plastic(roughness: 0.6, specular: 0.1); vec3 toy_eyes = glossy_acrylic(reflectivity: 0.9); vec3 packaging = matte_cardboard(print_quality: high) + clear_plastic_window; vec3 base_mat = infer_pedestal_material(subject); // Geometry & Layout mat4 hero_toy = assemble_chibi(subject, toy_skin, toy_eyes); mat4 retail_box = assemble_box(subject, packaging); mat4 expression_column = stack_vertically(generate_faces(subject, 3)); mat4 props = scatter_items(infer_accessories(subject)); // Composition place_left(retail_box); place_center(hero_toy, mounted_on: base_mat); place_right(expression_column, props); render(studio_lighting, background: soft_gradient); }