From b40a1df37c6a422763b21a2e548341607d4b8cdb Mon Sep 17 00:00:00 2001 From: masterex1000 Date: Tue, 8 Mar 2022 21:30:20 -0700 Subject: [PATCH] Add table of contents --- Frequently-asked-Questions--Common-Questions.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Frequently-asked-Questions--Common-Questions.md b/Frequently-asked-Questions--Common-Questions.md index f246d4c..ba0023f 100644 --- a/Frequently-asked-Questions--Common-Questions.md +++ b/Frequently-asked-Questions--Common-Questions.md @@ -1,4 +1,15 @@ This page will go over some of the common questions new users have when starting out using raylib. + +__Table Of Contents__ +- [How do I remove the log?](#how-do-i-remove-the-log) +- [How do I make a timer?](#how-do-i-make-a-timer) +- [What do all the fields in Camera2d mean?](#what-do-all-the-fields-in-camera2d-mean) +- [How do I center text on the screen?](#how-do-i-center-text-on-the-screen) +- [Why does calling `LoadTexture` crash my program?](#why-does-calling--loadtexture--crash-my-program) +- [How can I draw a texture flipped?](#how-can-i-draw-a-texture-flipped) +- [Why is my render texture upside down?](#why-is-my-render-texture-upside-down) +- [How do I create a depth texture?](#how-do-i-create-a-depth-texture) + # How do I remove the log? Call `SetTraceLogLevel(LOG_NONE)` before `InitWindow`