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 71f5efc5c9
commit 20ce34c6a8

View file

@ -13,6 +13,7 @@ using OpenTK;
using OpenTK.Fonts; using OpenTK.Fonts;
using OpenTK.OpenGL; using OpenTK.OpenGL;
using OpenTK.Input; using OpenTK.Input;
using System.IO;
namespace Examples.Tutorial namespace Examples.Tutorial
{ {
@ -25,7 +26,7 @@ namespace Examples.Tutorial
TextureFont serif; 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_speed;
float scroll_position; float scroll_position;
float initial_position; float initial_position;