Fazer um script de transição entre o video de introdução (ultima cena mostra o coelho no cesto na porta de casa) e o inicio do jogo que coleta o nome do personagem dado pelo jogador e trás o personagem pra dentro do cenario.
Iniciei em LUA pra passar a ideia:
--intro pos video
io.write("You were blessed with this fluffy little weird thing.\n");
io.read();
io.write("Now it is your problem. Got it?\n");
io.read();
io.write("First thing, How are you going to name it?\n");
petName = io.read();
io.write( petName , "? Sounds good for a wirdo.\n");
io.read();
io.write("Second thing, How are you going to educate and create it?\n");
io.read();
--[[need to create a animation with a round camera very close zoom in
the pet entering the room until stop in the middle, the round camera zoom out
presenting the game scenario and pet in central position in his initial status
and normal randon movement, and game begins --]]
@rfabbri @pliniopereira - Ajudem
Fazer um script de transição entre o video de introdução (ultima cena mostra o coelho no cesto na porta de casa) e o inicio do jogo que coleta o nome do personagem dado pelo jogador e trás o personagem pra dentro do cenario. Iniciei em LUA pra passar a ideia:
--intro pos video io.write("You were blessed with this fluffy little weird thing.\n"); io.read(); io.write("Now it is your problem. Got it?\n"); io.read(); io.write("First thing, How are you going to name it?\n"); petName = io.read(); io.write( petName , "? Sounds good for a wirdo.\n"); io.read(); io.write("Second thing, How are you going to educate and create it?\n"); io.read(); --[[need to create a animation with a round camera very close zoom in the pet entering the room until stop in the middle, the round camera zoom out presenting the game scenario and pet in central position in his initial status and normal randon movement, and game begins --]]