Explore AI generated designs, images, art and prompts by top community artists and designers.
modelshoot style , (extremely detailed CG unity 8k wallpaper) , (front view:1.2) , full shot body photo of beautiful Ancient Chinese woman(young Liu Yifei :1.2) , (karate hand:1.2) , (hand hold bamboo flute) , (Kung fu master:1.2) , top of mountain , (sun shine through tree:1.3) , (sun shine on body:1.3) , (bamboo hat) , (hair through hat) , standing , (sexy revealing dress:1.3) , ( winter mountain:1.2) , ( windy storm snow:1.1) , ( strong wind :1.5) , ( strong wind :1.5) , NSFW , sexy model , (see through dress:1.2) , (show half breast:1.3) , pearl skin , fit shirt , (show half thigh :1.3) , (eyes contact:1.2) , angry , front hair bang , professional majestic oil painting by Ed Blinkey , Atey Ghailan , Studio Ghibli , by Jeremy Mann , Greg Manchess , Antonio Moro , trending on ArtStation , trending on CGSociety , Intricate , High Detail , Sharp focus , dramatic , photorealistic painting art by midjourney and greg rutkowski ,
modelshoot style , (extremely detailed CG unity 8k wallpaper) , (front view:1.2) , full shot body photo of beautiful Ancient Chinese woman(young Liu Yifei :1.2) , (karate hand:1.2) , (hand hold bamboo flute) , (Kung fu master:1.2) , top of mountain , (sun shine through tree:1.3) , (sun shine on body:1.3) , (bamboo hat) , (hair through hat) , standing , (sexy revealing dress:1.3) , ( winter mountain:1.2) , ( windy storm snow:1.1) , ( strong wind :1.5) , ( strong wind :1.5) , NSFW , sexy model , (see through dress:1.2) , (show half breast:1.3) , pearl skin , fit shirt , (show half thigh :1.3) , (eyes contact:1.2) , angry , front hair bang , professional majestic oil painting by Ed Blinkey , Atey Ghailan , Studio Ghibli , by Jeremy Mann , Greg Manchess , Antonio Moro , trending on ArtStation , trending on CGSociety , Intricate , High Detail , Sharp focus , dramatic , photorealistic painting art by midjourney and greg rutkowski ,
Dahlia "Dazzle" Flores • Superpower: Light Manipulation • Prompt: "Macro Shot of Dahlia's Radiant Lightshow Focus on Dahlia's outstretched hand as she releases a cascade of shimmering , multicolored light particles that dance and swirl in the air. The light is vibrant and dynamic , casting a kaleidoscope of colors on her face and the surrounding urban landscape. The inner-city backdrop is slightly out of focus , with the setting sun providing a warm , golden glow that complements the vivid hues of Dahlia's light display. Dahlia uses her power to 'zap' her friends with dazzling light shows , creating mesmerizing patterns that captivate and inspire. The lighting is ethereal and enchanting , with the light particles reflecting off nearby surfaces and creating a magical atmosphere. The scene captures Dahlia's joyful and creative spirit , as she uses her ability to bring beauty and wonder to the world around her." ,
Forged from the abyss , this spectral warrior emerges—a swirling storm of darkness and fury. Cloaked in shadows and wielding a blade that cuts through reality itself , he is both chaos and silence , destruction and art. Ink and energy fuse together , creating a figure that defies form yet commands presence. Is he a guardian of the void or a harbinger of doom? The answer lies in the whispers of the darkness he commands ,
# Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra landscape , viewed from a top-down perspective. The terrain is covered in a seamless , windswept grass texture with a mix of golden yellow , rusty orange , and reddish-brown hues , creating a dry , autumnal feel. The grass appears soft and uniform , with only subtle , natural undulations that make the surface slightly uneven. There are no distinct clumps or tufts , just a continuous , slightly irregular grass cover , with gentle variations in height and density. The colors blend smoothly , with warmer shades fading into lighter patches , giving the impression of an open tundra with a naturally textured surface. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,
A game-rendered tundra grassland , viewed from a top-down perspective. The grass is predominantly warm golden , rusty orange , and reddish-brown , with subtle variations in tone that create a natural , windswept effect. The texture is dry and rugged , with clusters of denser grass forming soft , irregular mounds , contrasting with flatter , more eroded areas. The grass transitions between thicker tufts and sparser patches , revealing a slightly rough , uneven terrain beneath. There is a sense of natural randomness , where the warmer hues blend seamlessly , creating an organic and slightly rugged tundra aesthetic. ,