Giter VIP home page Giter VIP logo

Comments (3)

OlegAlexander avatar OlegAlexander commented on September 18, 2024

Ah, I can see in the DOCUMENTATION.md file that the initWindow function returns a WindowResources. (The DOCUMENTATION.md file is a little hard to find, so that's why I missed it.)

However, my question about an example of using loadTexture still stands. Thanks!

from h-raylib.

Anut-py avatar Anut-py commented on September 18, 2024

You can look at the examples to see how to use WindowResources. Below is an example of how to use it with loadTexture.

{-# OPTIONS -Wall #-}
{-# LANGUAGE TemplateHaskell #-}
module Main where

import Raylib.Core
import Raylib.Core.Textures
import Raylib.Types
import Raylib.Util
import Raylib.Util.Colors

startup :: IO (WindowResources, Texture)
startup = do
  window <- initWindow 600 450 "loadTexture example"
  setTargetFPS 60
  texture <- loadTexture "/path/to/file" window -- this is what you're looking for
  return (window, texture)

mainLoop :: (WindowResources, Texture) -> IO (WindowResources, Texture)
mainLoop (window, texture) = do
  drawing $ do
      clearBackground rayWhite
      -- use the texture here
  return (window, texture)

shouldClose :: (WindowResources, Texture) -> IO Bool
shouldClose _ = windowShouldClose

teardown :: (WindowResources, Texture) -> IO ()
teardown = closeWindow . fst

raylibApplication 'startup 'mainLoop 'shouldClose 'teardown

from h-raylib.

OlegAlexander avatar OlegAlexander commented on September 18, 2024

Thank you! That's super helpful!

from h-raylib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.