Results 1 to 6 of 6

Thread: Few questions

  1. #1

    Few questions

    Hello, Seniors of Development.

    I want using Asphyre, but I don't know how is it doing?
    Please, help me!
    Sorry, my English is bad.

  2. #2

    Re: Few questions

    I'm not sure what you mean. Do you want to know how to use it?

    If so, That's not something we can explain to you. You need to ask a more specific question. And if you want to know how to use it, you should look for some proper documentation and code-samples.
    Coders rule nr 1: Face ur bugz.. dont cage them with code, kill'em with ur cursor.

  3. #3

    Re: Few questions

    Thank's for your answer.

    I download Asphyre package and set on my Delphi.
    I write to formCreate:

    Code:
    procedure TMain.MainFormCreate(Sender: TObject);
    begin
     if (not aDvc.Initialize) then
     begin
      ShowMessage('Error initializing Asphyre!');
      Main.Close;
     end;
    
     //...
    end;
    
    procedure TMain.aTmrTimer(Sender: Tobject);
    begin
     aDvc.Render(clWhite, True);
     aDvc.Flip;
    end;
    
    //and drawing in procedure aDvc.Render
    procedure TMain.aDvcRender(Sender: Tobject);
    begin
     aCanvas.Rectangle(0, 0, aDvc.Width, aDvc.Height, clLime, clGreen, 1);
    end;
    how to use AsphyreFont from ASDB archives?

  4. #4

    Re: Few questions

    Well.. Did you try to figure it out yourself?

    I don't feel like doing all the work for you. You have to do this by yourself.
    Go download the latest apshyre package:

    http://www.afterwarp.net/products/asphyresphinx

    It has a nice bunch of samples. Run them, study them and try to do similair things.
    The example game Hastroids has fonts so that's probably what you are looking for.

    Good luck
    Coders rule nr 1: Face ur bugz.. dont cage them with code, kill'em with ur cursor.

  5. #5

    Re: Few questions

    Quote Originally Posted by chronozphere
    http://www.afterwarp.net/products/asphyresphinx

    It has a nice bunch of samples. Run them, study them and try to do similair things.
    The example game Hastroids has fonts so that's probably what you are looking for.

    Good luck
    I agree... This is the best way due to Asphyre's complete lack of documentation...

  6. #6

    Re: Few questions

    For you: Thanks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •