Posterior a de nuestra extensa recopilación de información pudimos resolver esta cuestión que tienen algunos de nuestros usuarios. Te brindamos la solución y nuestro deseo es que te sea de mucha apoyo.
Ejemplo 1: Python cómo escribir texto en Pygame
import pygame
pygame.init()
window = pygame.display.set_mode((500,500))defset_text(string, coordx, coordy, fontSize):#Function to set text
font = pygame.font.Font('freesansbold.ttf', fontSize)#(0, 0, 0) is black, to make black text
text = font.render(string,True,(0,0,0))
textRect = text.get_rect()
textRect.center =(coordx, coordy)return(text, textRect)
window.fill((255,255,255))#Fills the whole window with white#Places "Text in Pygame!" with an x,y coord of 250, 250 and 60 font size
totalText = set_text("Text in Pygame!",250,250,60)
window.blit(totalText[0], totalText[1])
pygame.display.update()
Ejemplo 2: cómo dibujar texto en monojuego
// In the LoadContent() method:
SpriteFont font = Content.Load<SpriteFont>("sprite font location");// In the Draw() method:
spriteBatch.Begin();
spriteBatch.DrawString(font,"Hello World!", position, color);
spriteBatch.End();
Ejemplo 3: cómo renderizar texto en pygame
pygame.font.init()# you have to call this at the start, # if you want to use this module.
myfont = pygame.font.SysFont('Comic Sans MS',30)
textsurface = myfont.render('Some Text',False,(0,0,0))
screen.blit(textsurface,(0,0))
Reseñas y calificaciones del tutorial
Si te gusta la informática, tienes el poder dejar un escrito acerca de qué le añadirías a este tutorial.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)