Example now reads the poem from Data\Poem.txt instead from an embedded resource.

This commit is contained in:
the_fiddler 2007-10-20 13:41:39 +00:00
parent 55f8be2bd6
commit eb31744ad0

View file

@ -13,6 +13,7 @@ using OpenTK;
using OpenTK.Fonts;
using OpenTK.OpenGL;
using OpenTK.Input;
using System.IO;
namespace Examples.Tutorial
{
@ -25,7 +26,7 @@ namespace Examples.Tutorial
TextureFont serif;
string[] poem = Resources.Poem.Replace('\r', ' ').Split('\n');
string[] poem = new StreamReader("Data\\Poem.txt").ReadToEnd().Replace('\r', ' ').Split('\n');
float scroll_speed;
float scroll_position;
float initial_position;