AI 生图提示词:2x2 grid, do this for 4 famous cities: class Scene: RENDER_ENGINE = INFER("engin

提示词

2x2 grid, do this for 4 famous cities: class Scene: RENDER_ENGINE = INFER("engine", from_style="papercraft_photography") CAMERA = INFER("lens", from_subject="floating_sphere_object") LIGHTING = INFER("light_rig", from_bg="pure_white_studio") BACKGROUND = "pure_white | isolated | soft_ground_shadow" MATERIAL_LAW = "ALL elements = same paper medium | monochromatic" class PapercraftPlanet(Scene): def sphere(self): geometry = "perfect_sphere | floating | full_360_coverage" material = INFER(paper_grade, FROM=city.craft_tradition) color = INFER(mono_palette, FROM=material) texture = "corrugation, fold_lines, cut_edges, layer_depth" scale = INFER(display_size, FROM=papercraft_tradition) return [geometry, material, color, texture, scale] def top_hemisphere(self): skyline = INFER(iconic_towers, FROM=city.signature_silhouette) layers = "foreground + mid + background paper depth layers" backdrop = "curved cardboard cutaway panel — exposes paper sky" sky = INFER(paper_cut_elements, FROM=city.atmospheric_identity) density = "HIGH — towers fill entire upper arc" return [skyline, layers, backdrop, sky, density] def bottom_hemisphere(self): buildings = INFER(urban_fabric, FROM=city.neighborhood_variety) physics = "INVERTED — all structures hang downward from equator" coverage = "360° total — zero bare sphere surface" variety = INFER(building_mix, FROM=city.district_diversity) return [buildings, physics, coverage, variety] def surface_detail(self): trees = INFER(paper_trees, FROM=material, scattered=True) vehicles = INFER(paper_cars, FROM=city.street_culture) roads = INFER(street_grid, FROM=city.urban_planning_type) micro = "window_cuts, door_scores, balcony_folds" return [trees, vehicles, roads, micro] # EXECUTE render_image( PapercraftPlanet.sphere(), PapercraftPlanet. top_hemisphere(), PapercraftPlanet.bottom_hemisphere(), PapercraftPlanet.surface_detail(), material_law=Scene.MATERIAL_LAW, camera=Scene. CAMERA, bg=Scene.BACKGROUND )

@Gdgtify来源 ↗

中文版