Isometric Studio Scene of Tattoo Artist with Floating Tools and Cards

A stylized 3D-2D hybrid rendering depicts a tattoo artist drawing at a desk, surrounded by floating ink tools and design cards, illuminated by clean white studio lighting.

Prompt

Another version of my prompt for tattoo artists. 

 void main() {
    string genre = "[ART_STYLE]";
    
    // Material Shaders (Crucial for separating the 2D/3D elements)
    vec3 toy_material = subsurface_plastic(roughness: 0.6, specular: low);
    vec3 card_material = unlit_2D_paper(thickness: 0.0);
    vec3 graphic_material = unlit_flat_color(color: pure_black, depth: 0.0);
    
    // Semantic Generation
    vec3 artist_mesh = generate_character(infer_fashion(genre), toy_material);
    vec3 floating_cards = generate_cards(infer_motifs(genre, 4), card_material);
    vec3 floating_tools = generate_icons(infer_tools(genre), graphic_material);
    
    // Assembly & Layout
    place_top_row(floating_cards);
    place_center(artist_mesh, action: drawing_at_desk);
    orbit_mesh(floating_tools, around: artist_mesh, physics: zero_gravity);
    add_prop(toy_box(genre), position: background_right);
    
    render(white_studio_lighting, isometric_perspective: true);
}
Published: March 26, 2026 by